Skip to content

Commit 944c6b6

Browse files
committed
New ui tests for new soft feature gates
1 parent 767239f commit 944c6b6

8 files changed

+131
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// check-fail
2+
// This file is used to test the behavior of the early-pass syntax warnings.
3+
// If macro syntax is stabilized, replace with a different unstable syntax.
4+
5+
macro a() {}
6+
//~^ ERROR: `macro` is experimental
7+
8+
#[cfg(FALSE)]
9+
macro b() {}
10+
11+
macro_rules! identity {
12+
($($x:tt)*) => ($($x)*);
13+
}
14+
15+
identity! {
16+
macro c() {}
17+
//~^ ERROR: `macro` is experimental
18+
}
19+
20+
#[cfg(FALSE)]
21+
identity! {
22+
macro d() {} // No error
23+
}
24+
25+
identity! {
26+
#[cfg(FALSE)]
27+
macro e() {}
28+
}
29+
30+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
error[E0658]: `macro` is experimental
2+
--> $DIR/soft-syntax-gates-with-errors.rs:5:1
3+
|
4+
LL | macro a() {}
5+
| ^^^^^^^^^^^^
6+
|
7+
= note: see issue #39412 <https://github.com/rust-lang/rust/issues/39412> for more information
8+
= help: add `#![feature(decl_macro)]` to the crate attributes to enable
9+
10+
error[E0658]: `macro` is experimental
11+
--> $DIR/soft-syntax-gates-with-errors.rs:16:5
12+
|
13+
LL | macro c() {}
14+
| ^^^^^^^^^^^^
15+
|
16+
= note: see issue #39412 <https://github.com/rust-lang/rust/issues/39412> for more information
17+
= help: add `#![feature(decl_macro)]` to the crate attributes to enable
18+
19+
error: aborting due to 2 previous errors
20+
21+
For more information about this error, try `rustc --explain E0658`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// check-pass
2+
// This file is used to test the behavior of the early-pass syntax warnings.
3+
// If macro syntax is stabilized, replace with a different unstable syntax.
4+
5+
#[cfg(FALSE)]
6+
macro b() {}
7+
//~^ WARN: `macro` is experimental
8+
//~| WARN: unstable syntax
9+
10+
macro_rules! identity {
11+
($($x:tt)*) => ($($x)*);
12+
}
13+
14+
#[cfg(FALSE)]
15+
identity! {
16+
macro d() {} // No error
17+
}
18+
19+
identity! {
20+
#[cfg(FALSE)]
21+
macro e() {}
22+
//~^ WARN: `macro` is experimental
23+
//~| WARN: unstable syntax
24+
}
25+
26+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
warning: `macro` is experimental
2+
--> $DIR/soft-syntax-gates-without-errors.rs:6:1
3+
|
4+
LL | macro b() {}
5+
| ^^^^^^^^^^^^
6+
|
7+
= note: see issue #39412 <https://github.com/rust-lang/rust/issues/39412> for more information
8+
= help: add `#![feature(decl_macro)]` to the crate attributes to enable
9+
= warning: unstable syntax can change at any point in the future, causing a hard error!
10+
= note: for more information, see issue #65860 <https://github.com/rust-lang/rust/issues/65860>
11+
12+
warning: `macro` is experimental
13+
--> $DIR/soft-syntax-gates-without-errors.rs:21:5
14+
|
15+
LL | macro e() {}
16+
| ^^^^^^^^^^^^
17+
|
18+
= note: see issue #39412 <https://github.com/rust-lang/rust/issues/39412> for more information
19+
= help: add `#![feature(decl_macro)]` to the crate attributes to enable
20+
= warning: unstable syntax can change at any point in the future, causing a hard error!
21+
= note: for more information, see issue #65860 <https://github.com/rust-lang/rust/issues/65860>
22+
23+
warning: 2 warnings emitted
24+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
fn main() {
2+
let _ = 0: i32; //~ ERROR: type ascription is experimental
3+
let _ = 0: i32; // (error only emitted once)
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
error[E0658]: type ascription is experimental
2+
--> $DIR/many-type-ascription.rs:2:13
3+
|
4+
LL | let _ = 0: i32;
5+
| ^^^^^^
6+
|
7+
= note: see issue #23416 <https://github.com/rust-lang/rust/issues/23416> for more information
8+
= help: add `#![feature(type_ascription)]` to the crate attributes to enable
9+
10+
error: aborting due to previous error
11+
12+
For more information about this error, try `rustc --explain E0658`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
fn main() {
2+
not rust; //~ ERROR
3+
let _ = 0: i32; // (error hidden by existing error)
4+
#[cfg(FALSE)]
5+
let _ = 0: i32; // (warning hidden by existing error)
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `rust`
2+
--> $DIR/type-ascription-and-other-error.rs:2:9
3+
|
4+
LL | not rust;
5+
| ^^^^ expected one of 8 possible tokens
6+
7+
error: aborting due to previous error
8+

0 commit comments

Comments
 (0)