diff options
| author | Jakub Bukaj <jakub@jakub.cc> | 2014-11-18 00:24:01 +0100 |
|---|---|---|
| committer | Jakub Bukaj <jakub@jakub.cc> | 2014-11-18 00:24:01 +0100 |
| commit | 7783e80d9894272d521fe019fbd4d0eb69bf8d7d (patch) | |
| tree | 348a760997e47c407eaa62ad823e6a473d7cb75b /src/test | |
| parent | bcd3a4f42bd7076725768b13a1948784bdcb02d5 (diff) | |
| parent | 54c76e6e8193e96b2ca15542f916a7520cfaa75f (diff) | |
| download | rust-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.rs | 20 |
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 + } +} |
