rust/tests/ui/coherence/coherence-fundamental-trait-objects.rs
2023-01-11 09:32:08 +00:00

16 lines
395 B
Rust

// Check that trait objects from #[fundamental] traits are not
// treated as #[fundamental] types - the 2 meanings of #[fundamental]
// are distinct.
// aux-build:coherence_fundamental_trait_lib.rs
extern crate coherence_fundamental_trait_lib;
use coherence_fundamental_trait_lib::{Fundamental, Misc};
pub struct Local;
impl Misc for dyn Fundamental<Local> {}
//~^ ERROR E0117
fn main() {}