mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
23 lines
271 B
Rust
23 lines
271 B
Rust
// aux-build:attributes-included.rs
|
|
// check-pass
|
|
|
|
#![warn(unused)]
|
|
|
|
extern crate attributes_included;
|
|
|
|
use attributes_included::*;
|
|
|
|
#[bar]
|
|
#[inline]
|
|
/// doc
|
|
#[foo]
|
|
#[inline]
|
|
/// doc
|
|
fn foo() {
|
|
let a: i32 = "foo"; //~ WARN: unused variable
|
|
}
|
|
|
|
fn main() {
|
|
foo()
|
|
}
|