]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/rfc-2008-non-exhaustive/invalid-attribute.rs
New upstream version 1.28.0~beta.14+dfsg1
[rustc.git] / src / test / compile-fail / rfc-2008-non-exhaustive / invalid-attribute.rs
CommitLineData
83c7162d 1// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
223e47cc
LB
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
83c7162d 11#![feature(non_exhaustive)]
d9579d0f 12
83c7162d 13#[non_exhaustive(anything)]
94b46f34 14//~^ ERROR attribute should be empty [E0702]
83c7162d 15struct Foo;
223e47cc 16
83c7162d 17#[non_exhaustive]
94b46f34 18//~^ ERROR attribute can only be applied to a struct or enum [E0701]
83c7162d 19trait Bar { }
1a4d82fc 20
83c7162d 21#[non_exhaustive]
94b46f34 22//~^ ERROR attribute can only be applied to a struct or enum [E0701]
83c7162d
XL
23union Baz {
24 f1: u16,
25 f2: u16
26}
223e47cc
LB
27
28fn main() { }