summaryrefslogtreecommitdiffstats
path: root/src/test/ui/imports/issue-55457.rs
blob: c1f048897d9eae7aed38ba84fcdc43a13b33c8ed (plain)
1
2
3
4
5
6
7
8
9
10
use NonExistent; //~ ERROR unresolved import `NonExistent`
use non_existent::non_existent; //~ ERROR unresolved import `non_existent`

#[non_existent] //~ ERROR cannot determine resolution for the attribute macro `non_existent`
#[derive(NonExistent)] //~ ERROR cannot determine resolution for the derive macro `NonExistent`
                       //~| ERROR cannot determine resolution for the derive macro `NonExistent`
                       //~| ERROR cannot determine resolution for the derive macro `NonExistent`
struct S;

fn main() {}