]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/empty-struct-braces-pat-2.rs
New upstream version 1.15.0+dfsg1
[rustc.git] / src / test / compile-fail / empty-struct-braces-pat-2.rs
CommitLineData
b039eaaf
SL
1// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11// Can't use empty braced struct as enum pattern
12
9cc50fc6
SL
13// aux-build:empty-struct.rs
14
9cc50fc6
SL
15extern crate empty_struct;
16use empty_struct::*;
17
b039eaaf
SL
18struct Empty1 {}
19
b039eaaf
SL
20fn main() {
21 let e1 = Empty1 {};
9cc50fc6 22 let xe1 = XEmpty1 {};
b039eaaf 23
5bcae85e 24 match e1 {
c30ab7b3 25 Empty1() => () //~ ERROR unresolved tuple struct/variant `Empty1`
5bcae85e
SL
26 }
27 match xe1 {
c30ab7b3 28 XEmpty1() => () //~ ERROR unresolved tuple struct/variant `XEmpty1`
5bcae85e 29 }
b039eaaf 30 match e1 {
c30ab7b3 31 Empty1(..) => () //~ ERROR unresolved tuple struct/variant `Empty1`
b039eaaf 32 }
9cc50fc6 33 match xe1 {
c30ab7b3 34 XEmpty1(..) => () //~ ERROR unresolved tuple struct/variant `XEmpty1`
9cc50fc6 35 }
b039eaaf 36}