]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2091-track-caller/error-with-naked.rs
dd9e5d04135851cd4f1fe97c6ed828cae38b11b8
[rust.git] / src / test / ui / rfc-2091-track-caller / error-with-naked.rs
1 #![feature(naked_functions, track_caller)]
2
3 #[track_caller]
4 #[naked]
5 fn f() {}
6 //~^^^ ERROR cannot use `#[track_caller]` with `#[naked]`
7
8 fn main() {}