about summary refs log tree commit diff
path: root/tests/ui/resolve/visibility-indeterminate.rs
blob: 17e5fec4701b93f7612ec5fb10485da3ad5db4f1 (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() {}