16 lines
236 B
Rust
16 lines
236 B
Rust
#![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() {}
|