• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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> Remote1<Box<T>> for T {
11     //~^ ERROR type parameter `T` must be used as the type parameter for some local type
12 }
13 impl<'a, T> Remote1<&'a T> for T {
14     //~^ ERROR type parameter `T` must be used as the type parameter for some local type
15 }
16 
main()17 fn main() {}
18