mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
10 lines
297 B
Rust
10 lines
297 B
Rust
// May not matter, since people can use them with a nightly feature.
|
|
// However this tests to guarantee they don't leak out via portable_simd,
|
|
// and thus don't accidentally get stabilized.
|
|
use core::simd::intrinsics; //~ERROR E0433
|
|
use std::simd::intrinsics; //~ERROR E0432
|
|
|
|
fn main() {
|
|
()
|
|
}
|