summaryrefslogtreecommitdiffstats
path: root/tests/ui/test-attrs/issue-36768.rs
blob: 7531f3621f50f2a850907ffb27b4322c18a10fbc (plain)
1
2
3
4
5
6
7
8
9
// run-pass
// compile-flags:--test
#![deny(private_interfaces)]

#[test] fn foo() {}
mod foo {}

#[test] fn core() {}
extern crate core;