]> git.proxmox.com Git - rustc.git/blame - src/test/ui/lint/lint-ctypes.rs
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / test / ui / lint / lint-ctypes.rs
CommitLineData
0731742a 1#![feature(rustc_private)]
223e47cc 2
0bf4aa26 3#![allow(private_in_public)]
e1599b0c 4#![deny(improper_ctypes)]
0bf4aa26 5
1a4d82fc 6extern crate libc;
223e47cc 7
6a06907d 8use std::cell::UnsafeCell;
2c00a5a8
XL
9use std::marker::PhantomData;
10
3dfed10e 11trait Bar { }
7453a54e
SL
12trait Mirror { type It: ?Sized; }
13impl<T: ?Sized> Mirror for T { type It = Self; }
c1a9b12d
SL
14#[repr(C)]
15pub struct StructWithProjection(*mut <StructWithProjection as Mirror>::It);
16#[repr(C)]
17pub struct StructWithProjectionAndLifetime<'a>(
18 &'a mut <StructWithProjectionAndLifetime<'a> as Mirror>::It
19);
20pub type I32Pair = (i32, i32);
21#[repr(C)]
22pub struct ZeroSize;
23pub type RustFn = fn();
5869c6ff 24pub type RustBadRet = extern "C" fn() -> Box<u32>;
c1a9b12d 25pub type CVoidRet = ();
e9174d1e 26pub struct Foo;
2c00a5a8
XL
27#[repr(transparent)]
28pub struct TransparentI128(i128);
29#[repr(transparent)]
30pub struct TransparentStr(&'static str);
31#[repr(transparent)]
32pub struct TransparentBadFn(RustBadRet);
33#[repr(transparent)]
34pub struct TransparentInt(u32);
35#[repr(transparent)]
36pub struct TransparentRef<'a>(&'a TransparentInt);
37#[repr(transparent)]
38pub struct TransparentLifetime<'a>(*const u8, PhantomData<&'a ()>);
39#[repr(transparent)]
40pub struct TransparentUnit<U>(f32, PhantomData<U>);
41#[repr(transparent)]
42pub struct TransparentCustomZst(i32, ZeroSize);
c1a9b12d 43
8bb4bdeb
XL
44#[repr(C)]
45pub struct ZeroSizeWithPhantomData(::std::marker::PhantomData<i32>);
46
5869c6ff 47extern "C" {
0531ce1d
XL
48 pub fn ptr_type1(size: *const Foo); //~ ERROR: uses type `Foo`
49 pub fn ptr_type2(size: *const Foo); //~ ERROR: uses type `Foo`
50 pub fn slice_type(p: &[u32]); //~ ERROR: uses type `[u32]`
51 pub fn str_type(p: &str); //~ ERROR: uses type `str`
1b1a35ee 52 pub fn box_type(p: Box<u32>); //~ ERROR uses type `Box<u32>`
f9652781 53 pub fn opt_box_type(p: Option<Box<u32>>);
1b1a35ee 54 //~^ ERROR uses type `Option<Box<u32>>`
0531ce1d
XL
55 pub fn char_type(p: char); //~ ERROR uses type `char`
56 pub fn i128_type(p: i128); //~ ERROR uses type `i128`
57 pub fn u128_type(p: u128); //~ ERROR uses type `u128`
3dfed10e 58 pub fn trait_type(p: &dyn Bar); //~ ERROR uses type `dyn Bar`
0531ce1d
XL
59 pub fn tuple_type(p: (i32, i32)); //~ ERROR uses type `(i32, i32)`
60 pub fn tuple_type2(p: I32Pair); //~ ERROR uses type `(i32, i32)`
e1599b0c
XL
61 pub fn zero_size(p: ZeroSize); //~ ERROR uses type `ZeroSize`
62 pub fn zero_size_phantom(p: ZeroSizeWithPhantomData);
63 //~^ ERROR uses type `ZeroSizeWithPhantomData`
8bb4bdeb 64 pub fn zero_size_phantom_toplevel()
1b1a35ee 65 -> ::std::marker::PhantomData<bool>; //~ ERROR uses type `PhantomData<bool>`
e1599b0c
XL
66 pub fn fn_type(p: RustFn); //~ ERROR uses type `fn()`
67 pub fn fn_type2(p: fn()); //~ ERROR uses type `fn()`
1b1a35ee 68 pub fn fn_contained(p: RustBadRet); //~ ERROR: uses type `Box<u32>`
0531ce1d
XL
69 pub fn transparent_i128(p: TransparentI128); //~ ERROR: uses type `i128`
70 pub fn transparent_str(p: TransparentStr); //~ ERROR: uses type `str`
1b1a35ee 71 pub fn transparent_fn(p: TransparentBadFn); //~ ERROR: uses type `Box<u32>`
60c5eb7d
XL
72 pub fn raw_array(arr: [u8; 8]); //~ ERROR: uses type `[u8; 8]`
73
6a06907d
XL
74 pub fn no_niche_a(a: Option<UnsafeCell<extern fn()>>);
75 //~^ ERROR: uses type `Option<UnsafeCell<extern "C" fn()>>`
76 pub fn no_niche_b(b: Option<UnsafeCell<&i32>>);
77 //~^ ERROR: uses type `Option<UnsafeCell<&i32>>`
78
60c5eb7d
XL
79 pub static static_u128_type: u128; //~ ERROR: uses type `u128`
80 pub static static_u128_array_type: [u128; 16]; //~ ERROR: uses type `u128`
223e47cc 81
5869c6ff 82 pub fn good3(fptr: Option<extern "C" fn()>);
c1a9b12d
SL
83 pub fn good4(aptr: &[u8; 4 as usize]);
84 pub fn good5(s: StructWithProjection);
85 pub fn good6(s: StructWithProjectionAndLifetime);
5869c6ff
XL
86 pub fn good7(fptr: extern "C" fn() -> ());
87 pub fn good8(fptr: extern "C" fn() -> !);
c1a9b12d
SL
88 pub fn good9() -> ();
89 pub fn good10() -> CVoidRet;
e9174d1e
SL
90 pub fn good11(size: isize);
91 pub fn good12(size: usize);
2c00a5a8
XL
92 pub fn good13(n: TransparentInt);
93 pub fn good14(p: TransparentRef);
94 pub fn good15(p: TransparentLifetime);
95 pub fn good16(p: TransparentUnit<ZeroSize>);
96 pub fn good17(p: TransparentCustomZst);
b7449926
XL
97 #[allow(improper_ctypes)]
98 pub fn good18(_: &String);
60c5eb7d
XL
99 pub fn good20(arr: *const [u8; 8]);
100 pub static good21: [u8; 8];
101
b7449926
XL
102}
103
104#[allow(improper_ctypes)]
5869c6ff 105extern "C" {
b7449926 106 pub fn good19(_: &String);
1a4d82fc 107}
223e47cc 108
ff7c6d11 109#[cfg(not(target_arch = "wasm32"))]
5869c6ff 110extern "C" {
ff7c6d11
XL
111 pub fn good1(size: *const libc::c_int);
112 pub fn good2(size: *const libc::c_uint);
113}
114
1a4d82fc 115fn main() {
223e47cc 116}