mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
395 B
Rust
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() {}
|