]> git.lizzy.rs Git - rust.git/blob - src/test/ui/test-should-panic-attr.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / test-should-panic-attr.rs
1 // Copyright 2016 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 // run-pass
12 // compile-flags: --test
13
14 #[test]
15 #[should_panic = "foo"]
16 //~^ WARN: attribute must be of the form:
17 fn test1() {
18     panic!();
19 }
20
21 #[test]
22 #[should_panic(expected)]
23 //~^ WARN: argument must be of the form:
24 fn test2() {
25     panic!();
26 }
27
28 #[test]
29 #[should_panic(expect)]
30 //~^ WARN: argument must be of the form:
31 fn test3() {
32     panic!();
33 }
34
35 #[test]
36 #[should_panic(expected(foo, bar))]
37 //~^ WARN: argument must be of the form:
38 fn test4() {
39     panic!();
40 }
41
42 #[test]
43 #[should_panic(expected = "foo", bar)]
44 //~^ WARN: argument must be of the form:
45 fn test5() {
46     panic!();
47 }