]> git.lizzy.rs Git - rust.git/blob - src/test/ui/attr-start.rs
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / ui / attr-start.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 #![feature(start)]
5
6 #[start]
7 fn start(_argc: isize, _argv: *const *const u8) -> isize {
8     return 0;
9 }