summary refs log tree commit diff
path: root/src/test/run-pass/crate-attributes.rc
blob: 2ee41913f40d14fbcb167f60e1daac94a108bc26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#[name = "crate-attributes"];
#[vers = "1.0"];

#[attr1]
#[path = "crate-attributes-src"]
mod m {
    #[legacy_exports];
  #[attr_inner];

  #[attr2]
    #[legacy_exports]
  mod foo;
}