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