]> git.lizzy.rs Git - rust.git/blob - tests/ui/test-attrs/issue-36768.rs
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / test-attrs / issue-36768.rs
1 // run-pass
2 // compile-flags:--test
3 #![deny(private_in_public)]
4
5 #[test] fn foo() {}
6 mod foo {}
7
8 #[test] fn core() {}
9 extern crate core;