]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-fail/issue-948.rs
Use better bound names in `-Zverbose` mode
[rust.git] / src / test / run-fail / issue-948.rs
index 272d85d7b508bbf2e0fa3c6985a6f4a311493ac6..8f1c6587f030a6ef02ed6f7410a123f20a39dd81 100644 (file)
@@ -1,20 +1,13 @@
-// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
 // error-pattern:beep boop
 
 #![allow(unused_variables)]
 
-struct Point { x: isize, y: isize }
+struct Point {
+    x: isize,
+    y: isize,
+}
 
 fn main() {
-    let origin = Point {x: 0, y: 0};
-    let f: Point = Point {x: (panic!("beep boop")),.. origin};
+    let origin = Point { x: 0, y: 0 };
+    let f: Point = Point { x: (panic!("beep boop")), ..origin };
 }