]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/impl[t]-foreign[fundamental[t]_local]-for-foreign.rs
Rollup merge of #104873 - RalfJung:therefore, r=Dylan-DPC
[rust.git] / src / test / ui / coherence / impl[t]-foreign[fundamental[t]_local]-for-foreign.rs
1 // compile-flags:--crate-name=test
2 // aux-build:coherence_lib.rs
3
4 extern crate coherence_lib as lib;
5 use lib::*;
6 use std::rc::Rc;
7
8 struct Local;
9
10 impl<T> Remote2<Box<T>, Local> for u32 {
11     //~^ ERROR type parameter `T` must be covered by another type
12 }
13
14 impl<'a, T> Remote2<&'a T, Local> for u32 {
15     //~^ ERROR type parameter `T` must be covered by another type
16 }
17
18 fn main() {}