-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test for new delayed bug code path
- Loading branch information
1 parent
8e76c76
commit c17a705
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#![feature(repr_simd)] | ||
|
||
#[repr(simd)] | ||
struct I64F64(i64, f64); | ||
//~^ ERROR SIMD vector should be homogeneous | ||
|
||
static X: I64F64 = I64F64(1, 2.0); | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
error[E0076]: SIMD vector should be homogeneous | ||
--> $DIR/monomorphize-heterogeneous.rs:4:1 | ||
| | ||
LL | struct I64F64(i64, f64); | ||
| ^^^^^^^^^^^^^ SIMD elements must have the same type | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0076`. |