rust/tests/ui/coherence/impl-foreign-for-locally-defined-fundamental[foreign].rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
238 B
Rust
Raw Normal View History

#![feature(fundamental)]
//@ compile-flags:--crate-name=test
//@ aux-build:coherence_lib.rs
//@ check-pass
extern crate coherence_lib as lib;
use lib::*;
#[fundamental]
struct MyBox<T>(T);
impl<T> Remote for MyBox<T> {}
fn main() {}