]> git.proxmox.com Git - rustc.git/blame - src/test/ui/coherence/impl[t]-foreign[local]-for-t.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / coherence / impl[t]-foreign[local]-for-t.rs
CommitLineData
e74abb32
XL
1// compile-flags:--crate-name=test
2// aux-build:coherence_lib.rs
3
4extern crate coherence_lib as lib;
5use lib::*;
6use std::rc::Rc;
7
8struct Local;
9
10impl<T> Remote1<Local> for T {
60c5eb7d 11 //~^ ERROR type parameter `T` must be covered by another type
e74abb32
XL
12}
13
14fn main() {}