summary refs log tree commit diff
path: root/src/test/ui/proc-macro/import.rs
blob: 8fbccdf1aed14cc51325b79f95cd79f953cce8b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
// aux-build:derive-a.rs

#![allow(warnings)]

#[macro_use]
extern crate derive_a;

use derive_a::derive_a;
//~^ ERROR: unresolved import `derive_a::derive_a`

fn main() {}