about summary refs log tree commit diff
path: root/tests/ui/imports/issue-55457.rs
blob: fd0829402558745dc2e2b18e1983fab7e959940b (plain)
1
2
3
4
5
6
7
8
9
use NonExistent; //~ ERROR unresolved import `NonExistent`
use non_existent::non_existent; //~ ERROR unresolved import `non_existent`

#[non_existent]
#[derive(NonExistent)]

struct S;

fn main() {}