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

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