summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0275.rs
blob: 28a9676f03e39aba19617063b0dbdc1812e7742c (plain)
1
2
3
4
5
6
7
8
trait Foo {}

struct Bar<T>(T);

impl<T> Foo for T where Bar<T>: Foo {} //~ ERROR E0275

fn main() {
}