summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type-alias-enum-variants/no-type-application-on-aliased-enum-variant.rs
blob: 872ece0c0f99e4d1dedd99601c33b995ca7b1848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Check that a generic type for an `enum` admits type application
// on both the type constructor and the generic type's variant.
//
// Also check that a type alias to said generic type admits type application
// on the type constructor but *NOT* the variant.

type Alias<T> = Option<T>;

fn main() {
    let _ = Option::<u8>::None; // OK
    let _ = Option::None::<u8>; // OK (Lint in future!)
    let _ = Alias::<u8>::None; // OK
    let _ = Alias::None::<u8>; //~ ERROR type arguments are not allowed on this type
}