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

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

16 lines
236 B
Rust
Raw Permalink 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 Local<T>(T);
impl Remote for Local<()> {}
fn main() {}