summaryrefslogtreecommitdiffstats
path: root/tests/ui/test-attrs/test-runner-hides-start.rs
blob: 56212bb6f4b7357a475baab7cd5a5612d67b77d9 (plain)
1
2
3
4
5
6
7
// run-pass
// compile-flags: --test

#![feature(start)]

#[start]
fn start(_: isize, _: *const *const u8) -> isize { panic!(); }