blob: 181bb29077430a3b7c37f79b207901d37f274e49 (
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 failed to resolve: could not find `bar` in the list of imported crates
fn main() {}
|