summary refs log tree commit diff
path: root/src/test/ui/issues/issue-30236.rs
blob: 02f899be09ca1d0497c5ca0fef8045592d65ba61 (plain)
1
2
3
4
5
6
7
8
type Foo<
    Unused //~ ERROR type parameter `Unused` is unused
    > = u8;

fn main() {

}