]> git.lizzy.rs Git - rust.git/blob - src/test/ui/repr/repr-transparent-other-items.rs
Auto merge of #53830 - davidtwco:issue-53228, r=nikomatsakis
[rust.git] / src / test / ui / repr / repr-transparent-other-items.rs
1 // Copyright 2017 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 // See also repr-transparent.rs
12
13 #[repr(transparent)] //~ ERROR unsupported representation for zero-variant enum
14 enum Void {}         //~| ERROR should be applied to struct
15
16 #[repr(transparent)] //~ ERROR should be applied to struct
17 enum FieldlessEnum {
18     Foo,
19     Bar,
20 }
21
22 #[repr(transparent)] //~ ERROR should be applied to struct
23 enum Enum {
24     Foo(String),
25     Bar(u32),
26 }
27
28 #[repr(transparent)] //~ ERROR should be applied to struct
29 union Foo {
30     u: u32,
31     s: i32
32 }
33
34 #[repr(transparent)] //~ ERROR should be applied to struct
35 fn cant_repr_this() {}
36
37 #[repr(transparent)] //~ ERROR should be applied to struct
38 static CANT_REPR_THIS: u32 = 0;
39
40 fn main() {}