about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorJakub Bukaj <jakub@jakub.cc>2014-11-18 00:24:01 +0100
committerJakub Bukaj <jakub@jakub.cc>2014-11-18 00:24:01 +0100
commit7783e80d9894272d521fe019fbd4d0eb69bf8d7d (patch)
tree348a760997e47c407eaa62ad823e6a473d7cb75b /src/test
parentbcd3a4f42bd7076725768b13a1948784bdcb02d5 (diff)
parent54c76e6e8193e96b2ca15542f916a7520cfaa75f (diff)
downloadrust-7783e80d9894272d521fe019fbd4d0eb69bf8d7d.tar.gz
rust-7783e80d9894272d521fe019fbd4d0eb69bf8d7d.zip
rollup merge of #19013: jakub-/issue-18986
Fixes #18986.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/compile-fail-fulldeps/issue-18986.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/compile-fail-fulldeps/issue-18986.rs b/src/test/compile-fail-fulldeps/issue-18986.rs
new file mode 100644
index 00000000000..25d78c273e7
--- /dev/null
+++ b/src/test/compile-fail-fulldeps/issue-18986.rs
@@ -0,0 +1,20 @@
+// Copyright 2014 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.
+
+// aux-build:use_from_trait_xc.rs
+
+extern crate use_from_trait_xc;
+pub use use_from_trait_xc::Trait;
+
+fn main() {
+    match () {
+        Trait { x: 42u } => () //~ ERROR use of trait `Trait` in a struct pattern
+    }
+}