2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2011-06-28 14:53:59 -05:00
|
|
|
// These are attributes of the implicit crate. Really this just needs to parse
|
|
|
|
// for completeness since .rs files linked from .rc files support this
|
|
|
|
// notation to specify their module's attributes
|
|
|
|
#[attr1 = "val"];
|
|
|
|
#[attr2 = "val"];
|
|
|
|
#[attr3];
|
|
|
|
#[attr4(attr5)];
|
|
|
|
|
|
|
|
// Special linkage attributes for the crate
|
2013-05-20 19:07:24 -05:00
|
|
|
#[link(name = "extra",
|
2011-06-28 14:53:59 -05:00
|
|
|
vers = "0.1",
|
|
|
|
uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
|
2013-05-20 19:07:24 -05:00
|
|
|
url = "http://rust-lang.org/src/extra")];
|
2011-06-28 14:53:59 -05:00
|
|
|
|
2013-06-06 02:38:41 -05:00
|
|
|
// These are attributes of the following mod
|
2011-06-28 14:53:59 -05:00
|
|
|
#[attr1 = "val"]
|
|
|
|
#[attr2 = "val"]
|
2013-01-30 17:56:40 -06:00
|
|
|
mod test_first_item_in_file_mod {}
|
2011-06-28 14:53:59 -05:00
|
|
|
|
|
|
|
mod test_single_attr_outer {
|
|
|
|
#[attr = "val"]
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static x: int = 10;
|
2011-06-28 14:53:59 -05:00
|
|
|
|
|
|
|
#[attr = "val"]
|
2013-01-30 17:56:40 -06:00
|
|
|
pub fn f() { }
|
2011-06-28 14:53:59 -05:00
|
|
|
|
|
|
|
#[attr = "val"]
|
2013-01-30 17:56:40 -06:00
|
|
|
pub mod mod1 {}
|
2011-06-28 14:53:59 -05:00
|
|
|
|
2013-03-05 16:42:58 -06:00
|
|
|
pub mod rustrt {
|
|
|
|
#[attr = "val"]
|
|
|
|
#[abi = "cdecl"]
|
2013-07-18 21:08:57 -05:00
|
|
|
extern {}
|
2013-03-05 16:42:58 -06:00
|
|
|
}
|
2011-06-28 14:53:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
mod test_multi_attr_outer {
|
|
|
|
#[attr1 = "val"]
|
|
|
|
#[attr2 = "val"]
|
2013-03-22 16:00:15 -05:00
|
|
|
pub static x: int = 10;
|
2011-06-28 14:53:59 -05:00
|
|
|
|
|
|
|
#[attr1 = "val"]
|
|
|
|
#[attr2 = "val"]
|
2013-01-30 17:56:40 -06:00
|
|
|
pub fn f() { }
|
2011-06-28 14:53:59 -05:00
|
|
|
|
|
|
|
#[attr1 = "val"]
|
|
|
|
#[attr2 = "val"]
|
2013-01-30 17:56:40 -06:00
|
|
|
pub mod mod1 {}
|
2011-06-28 14:53:59 -05:00
|
|
|
|
2013-03-05 16:42:58 -06:00
|
|
|
pub mod rustrt {
|
|
|
|
#[attr1 = "val"]
|
|
|
|
#[attr2 = "val"]
|
|
|
|
#[abi = "cdecl"]
|
2013-07-18 21:08:57 -05:00
|
|
|
extern {}
|
2013-03-05 16:42:58 -06:00
|
|
|
}
|
2011-06-28 14:53:59 -05:00
|
|
|
|
|
|
|
#[attr1 = "val"]
|
|
|
|
#[attr2 = "val"]
|
2013-03-06 21:09:17 -06:00
|
|
|
struct t {x: int}
|
2011-06-28 14:53:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
mod test_stmt_single_attr_outer {
|
2013-01-30 17:56:40 -06:00
|
|
|
pub fn f() {
|
2011-06-28 14:53:59 -05:00
|
|
|
#[attr = "val"]
|
2013-03-22 16:00:15 -05:00
|
|
|
static x: int = 10;
|
2011-06-28 14:53:59 -05:00
|
|
|
|
|
|
|
#[attr = "val"]
|
2011-07-27 07:19:39 -05:00
|
|
|
fn f() { }
|
2011-06-28 14:53:59 -05:00
|
|
|
|
|
|
|
#[attr = "val"]
|
|
|
|
mod mod1 {
|
|
|
|
}
|
2011-07-27 07:48:34 -05:00
|
|
|
|
2013-03-05 16:42:58 -06:00
|
|
|
mod rustrt {
|
|
|
|
#[attr = "val"]
|
|
|
|
#[abi = "cdecl"]
|
2013-07-18 21:08:57 -05:00
|
|
|
extern {
|
2013-03-05 16:42:58 -06:00
|
|
|
}
|
2011-06-28 14:53:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod test_stmt_multi_attr_outer {
|
2013-01-30 17:56:40 -06:00
|
|
|
pub fn f() {
|
2011-06-28 14:53:59 -05:00
|
|
|
|
|
|
|
#[attr1 = "val"]
|
|
|
|
#[attr2 = "val"]
|
2013-03-22 16:00:15 -05:00
|
|
|
static x: int = 10;
|
2011-06-28 14:53:59 -05:00
|
|
|
|
|
|
|
#[attr1 = "val"]
|
|
|
|
#[attr2 = "val"]
|
2011-07-27 07:19:39 -05:00
|
|
|
fn f() { }
|
2011-06-28 14:53:59 -05:00
|
|
|
|
|
|
|
/* FIXME: Issue #493
|
|
|
|
#[attr1 = "val"]
|
|
|
|
#[attr2 = "val"]
|
|
|
|
mod mod1 {
|
|
|
|
}
|
2011-07-27 07:48:34 -05:00
|
|
|
|
2013-03-05 16:42:58 -06:00
|
|
|
pub mod rustrt {
|
|
|
|
#[attr1 = "val"]
|
|
|
|
#[attr2 = "val"]
|
|
|
|
#[abi = "cdecl"]
|
2013-07-18 21:08:57 -05:00
|
|
|
extern {
|
2013-03-05 16:42:58 -06:00
|
|
|
}
|
2011-06-28 14:53:59 -05:00
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod test_attr_inner {
|
2013-01-30 17:56:40 -06:00
|
|
|
pub mod m {
|
2011-06-28 14:53:59 -05:00
|
|
|
// This is an attribute of mod m
|
|
|
|
#[attr = "val"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod test_attr_inner_then_outer {
|
2013-01-30 17:56:40 -06:00
|
|
|
pub mod m {
|
2011-06-28 14:53:59 -05:00
|
|
|
// This is an attribute of mod m
|
|
|
|
#[attr = "val"];
|
|
|
|
// This is an attribute of fn f
|
|
|
|
#[attr = "val"]
|
2011-07-27 07:19:39 -05:00
|
|
|
fn f() { }
|
2011-06-28 14:53:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod test_attr_inner_then_outer_multi {
|
2013-01-30 17:56:40 -06:00
|
|
|
pub mod m {
|
2011-06-28 14:53:59 -05:00
|
|
|
// This is an attribute of mod m
|
|
|
|
#[attr1 = "val"];
|
|
|
|
#[attr2 = "val"];
|
|
|
|
// This is an attribute of fn f
|
|
|
|
#[attr1 = "val"]
|
|
|
|
#[attr2 = "val"]
|
2011-07-27 07:19:39 -05:00
|
|
|
fn f() { }
|
2011-06-28 14:53:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod test_distinguish_syntax_ext {
|
2013-05-20 19:07:24 -05:00
|
|
|
extern mod extra;
|
2011-06-28 14:53:59 -05:00
|
|
|
|
2013-01-30 17:56:40 -06:00
|
|
|
pub fn f() {
|
2013-08-17 10:37:42 -05:00
|
|
|
fmt!("test%s", "s");
|
2011-06-28 14:53:59 -05:00
|
|
|
#[attr = "val"]
|
2011-07-27 07:19:39 -05:00
|
|
|
fn g() { }
|
2011-06-28 14:53:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod test_other_forms {
|
|
|
|
#[attr]
|
|
|
|
#[attr(word)]
|
|
|
|
#[attr(attr(word))]
|
2011-07-27 07:19:39 -05:00
|
|
|
#[attr(key1 = "val", key2 = "val", attr)]
|
2013-01-30 17:56:40 -06:00
|
|
|
pub fn f() { }
|
2011-06-28 14:53:59 -05:00
|
|
|
}
|
|
|
|
|
2012-06-26 18:18:37 -05:00
|
|
|
mod test_foreign_items {
|
2013-03-05 16:42:58 -06:00
|
|
|
pub mod rustrt {
|
2013-05-24 21:35:29 -05:00
|
|
|
use std::libc;
|
|
|
|
|
2013-03-05 16:42:58 -06:00
|
|
|
#[abi = "cdecl"]
|
2013-07-18 21:08:57 -05:00
|
|
|
extern {
|
2013-03-05 16:42:58 -06:00
|
|
|
#[attr];
|
2011-07-05 14:38:53 -05:00
|
|
|
|
2013-03-05 16:42:58 -06:00
|
|
|
#[attr]
|
2013-08-01 01:12:20 -05:00
|
|
|
fn rust_get_test_int() -> libc::intptr_t;
|
2013-03-05 16:42:58 -06:00
|
|
|
}
|
2011-07-05 14:38:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-05 19:01:23 -05:00
|
|
|
mod test_literals {
|
|
|
|
#[str = "s"];
|
|
|
|
#[char = 'c'];
|
|
|
|
#[int = 100];
|
|
|
|
#[uint = 100u];
|
|
|
|
#[mach_int = 100u32];
|
|
|
|
#[float = 1.0];
|
|
|
|
#[mach_float = 1.0f32];
|
2011-08-23 20:09:30 -05:00
|
|
|
#[nil = ()];
|
2011-07-05 19:01:23 -05:00
|
|
|
#[bool = true];
|
2013-01-30 17:56:40 -06:00
|
|
|
mod m {}
|
2011-07-05 19:01:23 -05:00
|
|
|
}
|
|
|
|
|
2012-01-15 19:23:59 -06:00
|
|
|
fn test_fn_inner() {
|
|
|
|
#[inner_fn_attr];
|
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() { }
|