about summary refs log tree commit diff
path: root/tests/ui/test-attrs/issue-36768.rs
blob: aca012f4af09c8ec32920a92a6157717a3d3965a (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;