d7d6238b23
This is consistent with all other diagnostics I could find containing features and enables the use of `DiagSymbolList` for generalizing diagnostics for unstable library features to multiple features.
10 lines
281 B
Rust
10 lines
281 B
Rust
// The trait must not be available if its feature flag is absent.
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
use std::mem::TransmuteFrom;
|
|
//~^ ERROR use of unstable library feature `transmutability` [E0658]
|
|
|
|
use std::mem::Assume;
|
|
//~^ ERROR use of unstable library feature `transmutability` [E0658]
|