Files
rust/tests/ui/coherence/impl-foreign[foreign]-for-local.rs

15 lines
209 B
Rust
Raw Normal View History

//@ compile-flags:--crate-name=test
//@ aux-build:coherence_lib.rs
//@ check-pass
2019-09-18 22:14:33 +02:00
extern crate coherence_lib as lib;
use lib::*;
use std::rc::Rc;
struct Local;
impl Remote1<u32> for Local {
}
fn main() {}