2019-03-11 19:49:17 -05:00
|
|
|
// aux-build:orphan-check-diagnostics.rs
|
|
|
|
|
|
|
|
// See issue #22388.
|
2015-02-16 13:40:38 -06:00
|
|
|
|
|
|
|
extern crate orphan_check_diagnostics;
|
|
|
|
|
|
|
|
use orphan_check_diagnostics::RemoteTrait;
|
|
|
|
|
2015-02-12 09:29:52 -06:00
|
|
|
trait LocalTrait { fn dummy(&self) { } }
|
2015-02-16 13:40:38 -06:00
|
|
|
|
|
|
|
impl<T> RemoteTrait for T where T: LocalTrait {}
|
|
|
|
//~^ ERROR type parameter `T` must be used as the type parameter for some local type
|
|
|
|
|
|
|
|
fn main() {}
|