summary refs log tree commit diff
path: root/src/test/run-pass/crate-attributes-src/foo.rs
blob: 7086ebf2ea8733cad205ce0612894d2c4c71cd30 (plain)
1
2
3
4
5
6
7
8
9
// These are attributes of the foo module
#[legacy_exports];
#[attr1 = "val"];
#[attr2 = "val"];

// Attributes of the following function
#[attr1 = "val"]
#[attr2 = "val"]
fn main() { }