]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence-lone-type-parameter.rs
Merge commit 'ea199bacef07213dbe008841b89c450e3bf0c638' into rustfmt-sync
[rust.git] / src / test / ui / coherence / coherence-lone-type-parameter.rs
1 // aux-build:coherence_lib.rs
2
3 extern crate coherence_lib as lib;
4 use lib::Remote;
5
6 impl<T> Remote for T { }
7 //~^ ERROR E0210
8
9
10 fn main() { }