]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lints-in-foreign-macros.rs
Move parse-fail tests to UI
[rust.git] / src / test / ui / lint / lints-in-foreign-macros.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // aux-build:lints-in-foreign-macros.rs
12 // compile-pass
13
14 #![warn(unused_imports)] //~ missing documentation for crate [missing_docs]
15 #![warn(missing_docs)]
16
17 #[macro_use]
18 extern crate lints_in_foreign_macros;
19
20 macro_rules! foo {
21     () => {use std::string::ToString;} //~ WARN: unused import
22 }
23
24 mod a { foo!(); }
25 mod b { bar!(); }
26 mod c { baz!(use std::string::ToString;); } //~ WARN: unused import
27 mod d { baz2!(use std::string::ToString;); } //~ WARN: unused import
28 baz!(pub fn undocumented() {}); //~ WARN: missing documentation for a function
29 baz2!(pub fn undocumented2() {}); //~ WARN: missing documentation for a function
30
31 fn main() {}