]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cfg-rustdoc.rs
Mark __msan_track_origins as an exported symbol for LTO
[rust.git] / src / test / ui / cfg-rustdoc.rs
1 #[cfg(doc)]
2 pub struct Foo;
3
4 fn main() {
5     let f = Foo; //~ ERROR
6 }