]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/E0642.rs
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / E0642.rs
index 58ccfc56ab79a8e293afcf2cf8ed5756c307a4b4..cfbd362c1da1995812f3fdd3c1926d3693d4ab01 100644 (file)
@@ -1,13 +1,3 @@
-// Copyright 2018 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.
-
 #[derive(Clone, Copy)]
 struct S;
 
@@ -16,6 +6,8 @@ trait T {
 
     fn bar((x, y): (i32, i32)) {} //~ ERROR patterns aren't allowed in methods without bodies
 
+    fn method(S { .. }: S) {} //~ ERROR patterns aren't allowed in methods without bodies
+
     fn f(&ident: &S) {} // ok
     fn g(&&ident: &&S) {} // ok
     fn h(mut ident: S) {} // ok