]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/visibility-indeterminate.rs
Rollup merge of #106797 - FawazTirmizi:dev/issues/104284, r=bjorn3
[rust.git] / tests / ui / resolve / visibility-indeterminate.rs
1 // edition:2018
2
3 foo!(); //~ ERROR cannot find macro `foo` in this scope
4
5 pub(in ::bar) struct Baz {} //~ ERROR cannot determine resolution for the visibility
6
7 fn main() {}