2022-07-21 17:43:25 +00:00
|
|
|
// The trait must not be available if its feature flag is absent.
|
|
|
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
|
2024-08-27 14:05:54 +00:00
|
|
|
use std::mem::TransmuteFrom;
|
2024-11-02 16:10:24 -07:00
|
|
|
//~^ ERROR use of unstable library feature `transmutability` [E0658]
|
2022-07-21 18:18:36 +00:00
|
|
|
|
|
|
|
|
use std::mem::Assume;
|
2024-11-02 16:10:24 -07:00
|
|
|
//~^ ERROR use of unstable library feature `transmutability` [E0658]
|