summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type-alias-impl-trait/cross_inference_pattern_bug.rs
blob: 811832848d9dd24f5206e3d160841e4fee7af808 (plain)
1
2
3
4
5
6
7
8
// compile-flags: --edition=2021
#![feature(type_alias_impl_trait)]

fn main() {
    type T = impl Copy; //~ ERROR unconstrained opaque type
    let foo: T = (1u32, 2u32);
    let (a, b): (u32, u32) = foo;
}