File tree 9 files changed +27
-3
lines changed
9 files changed +27
-3
lines changed Original file line number Diff line number Diff line change 1
1
//
2
2
// error-pattern: entry symbol `main` defined multiple times
3
+
4
+ // FIXME https://github.com/rust-lang/rust/issues/59774
5
+ // normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
6
+ // normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
3
7
#![ allow( warnings) ]
4
8
5
9
#[ no_mangle]
Original file line number Diff line number Diff line change 1
1
error: entry symbol `main` defined multiple times
2
- --> $DIR/dupe-symbols-7.rs:6 :1
2
+ --> $DIR/dupe-symbols-7.rs:10 :1
3
3
|
4
4
LL | fn main(){}
5
5
| ^^^^^^^^^^^
Original file line number Diff line number Diff line change 1
1
// error-pattern:; 1518600000
2
2
3
+ // FIXME https://github.com/rust-lang/rust/issues/59774
4
+ // normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
5
+ // normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
6
+
3
7
fn generic < T : Copy > ( t : T ) {
4
8
let s: [ T ; 1518600000 ] = [ t; 1518600000 ] ;
5
9
}
Original file line number Diff line number Diff line change 1
1
// error-pattern: too big for the current architecture
2
2
// normalize-stderr-test "\[usize; \d+\]" -> "[usize; N]"
3
3
4
+ // FIXME https://github.com/rust-lang/rust/issues/59774
5
+ // normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
6
+ // normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
7
+
4
8
#[ cfg( target_pointer_width = "32" ) ]
5
9
fn main ( ) {
6
10
let x = [ 0usize ; 0xffff_ffff ] ;
Original file line number Diff line number Diff line change 1
1
// normalize-stderr-test "\[&usize; \d+\]" -> "[&usize; N]"
2
2
// error-pattern: too big for the current architecture
3
3
4
+ // FIXME https://github.com/rust-lang/rust/issues/59774
5
+ // normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
6
+ // normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
7
+
4
8
#![ feature( box_syntax) ]
5
9
6
10
#[ cfg( target_pointer_width = "64" ) ]
Original file line number Diff line number Diff line change
1
+ // FIXME https://github.com/rust-lang/rust/issues/59774
2
+ // normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
3
+ // normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
4
+
1
5
#![ feature( linkage) ]
2
6
3
7
extern {
Original file line number Diff line number Diff line change 1
1
error: must have type `*const T` or `*mut T`
2
- --> $DIR/linkage2.rs:4 :32
2
+ --> $DIR/linkage2.rs:8 :32
3
3
|
4
4
LL | #[linkage = "extern_weak"] static foo: i32;
5
5
| ^^^^^^^^^^^^^^^^
Original file line number Diff line number Diff line change
1
+ // FIXME https://github.com/rust-lang/rust/issues/59774
2
+ // normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
3
+ // normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
4
+
1
5
#![ feature( linkage) ]
2
6
3
7
extern {
Original file line number Diff line number Diff line change 1
1
error: invalid linkage specified
2
- --> $DIR/linkage3.rs:4 :24
2
+ --> $DIR/linkage3.rs:8 :24
3
3
|
4
4
LL | #[linkage = "foo"] static foo: *const i32;
5
5
| ^^^^^^^^^^^^^^^^^^^^^^^
You can’t perform that action at this time.
0 commit comments