rust/tests/ui/type-alias-impl-trait/issue-52843-closure-constra...

14 lines
375 B
Rust

// Checks to ensure that we properly detect when a closure constrains an opaque type
#![feature(type_alias_impl_trait)]
use std::fmt::Debug;
fn main() {
type Opaque = impl Debug;
fn _unused() -> Opaque { String::new() }
let null = || -> Opaque { 0 };
//~^ ERROR: concrete type differs from previous defining opaque type use
println!("{:?}", null());
}