]> git.lizzy.rs Git - rust.git/blob - src/librustc_error_codes/error_codes/E0739.md
Rollup merge of #72674 - Mark-Simulacrum:clippy-always-test-pass, r=oli-obk
[rust.git] / src / librustc_error_codes / error_codes / E0739.md
1 `#[track_caller]` can not be applied on struct.
2
3 Erroneous code example:
4
5 ```compile_fail,E0739
6 #![feature(track_caller)]
7 #[track_caller]
8 struct Bar {
9     a: u8,
10 }
11 ```
12
13 [RFC 2091]: https://github.com/rust-lang/rfcs/blob/master/text/2091-inline-semantic.md