]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/impl[t]-foreign[local]-for-foreign.rs
Auto merge of #103808 - cjgillot:vec-cache, r=TaKO8Ki
[rust.git] / src / test / ui / coherence / impl[t]-foreign[local]-for-foreign.rs
1 // compile-flags:--crate-name=test
2 // aux-build:coherence_lib.rs
3 // check-pass
4
5 extern crate coherence_lib as lib;
6 use lib::*;
7 use std::rc::Rc;
8
9 struct Local;
10
11 impl<T> Remote1<Local> for Rc<T> {}
12 impl<T> Remote1<Local> for Vec<Box<T>> {}
13
14 fn main() {}