]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-ctypes-enum.rs
Move parse-fail tests to UI
[rust.git] / src / test / ui / lint / lint-ctypes-enum.rs
1 // Copyright 2013 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 #![deny(improper_ctypes)]
12 #![allow(dead_code)]
13
14 enum Z { }
15 enum U { A }
16 enum B { C, D }
17 enum T { E, F, G }
18
19 #[repr(C)]
20 enum ReprC { A, B, C }
21
22 #[repr(u8)]
23 enum U8 { A, B, C }
24
25 #[repr(isize)]
26 enum Isize { A, B, C }
27
28 extern {
29    fn zf(x: Z);
30    fn uf(x: U); //~ ERROR enum has no representation hint
31    fn bf(x: B); //~ ERROR enum has no representation hint
32    fn tf(x: T); //~ ERROR enum has no representation hint
33    fn reprc(x: ReprC);
34    fn u8(x: U8);
35    fn isize(x: Isize);
36 }
37
38 pub fn main() { }