mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
15 lines
260 B
Rust
15 lines
260 B
Rust
//@ compile-flags:--crate-name=test
|
|
//@ aux-build:coherence_lib.rs
|
|
//@ check-pass
|
|
|
|
extern crate coherence_lib as lib;
|
|
use lib::*;
|
|
use std::rc::Rc;
|
|
|
|
struct Local<T>(Rc<T>);
|
|
|
|
impl Remote1<Local<i32>> for i32 {}
|
|
impl<T> Remote1<Local<T>> for f32 {}
|
|
|
|
fn main() {}
|