summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/visibility-indeterminate.rs
blob: 0e1142db37d2dcc510da8645acd43b82d6d0ce39 (plain)
1
2
3
4
5
6
7
// edition:2018

foo!(); //~ ERROR cannot find macro `foo` in this scope

pub(in ::bar) struct Baz {} //~ ERROR cannot determine resolution for the visibility

fn main() {}