]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-9575.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-9575.rs
1 #![feature(start)]
2
3 #[start]
4 fn start(argc: isize, argv: *const *const u8, crate_map: *const u8) -> isize {
5     //~^ `#[start]` function has wrong type
6    0
7 }