Skip to content

Commit 1c34227

Browse files
author
Alexander Regueiro
committed
Modified expected error messages in accordance with rebase.
1 parent 13b82ec commit 1c34227

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/test/compile-fail/issue-14227.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ extern {
1414
pub static symbol: ();
1515
}
1616
static CRASH: () = symbol;
17-
//~^ ERROR constant evaluation error
17+
//~^ ERROR could not evaluate static initializer
18+
//~| tried to read from foreign (extern) static
19+
//~^^^ ERROR could not evaluate static initializer
20+
//~| tried to read from foreign (extern) static
1821

1922
fn main() {}

src/test/compile-fail/issue-28324.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ extern {
1515
}
1616

1717
pub static BAZ: u32 = *&error_message_count;
18-
//~^ ERROR constant evaluation error
18+
//~^ ERROR could not evaluate static initializer
19+
//~| tried to read from foreign (extern) static
20+
//~^^^ ERROR could not evaluate static initializer
1921
//~| tried to read from foreign (extern) static
2022

2123
fn main() {}

0 commit comments

Comments
 (0)