summaryrefslogtreecommitdiffstats
path: root/src/test/run-make/rustc-macro-dep-files/bar.rs
blob: 4a3b3364bf044c81638bc55efc6e2d535cbae26e (plain)
1
2
3
4
5
6
7
8
#![no_std]
#![crate_type = "lib"]

#[macro_use]
extern crate foo;

#[derive(A)]
struct A;