rust/tests/ui/test-attrs/issue-36768.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
137 B
Rust
Raw Normal View History

// run-pass
2016-09-27 20:06:37 +00:00
// compile-flags:--test
#![deny(private_in_public)]
#[test] fn foo() {}
mod foo {}
#[test] fn core() {}
extern crate core;