blob: a102d16078bed605d43bf140fb6de1dceff3ed55 [file] [log] [blame]
// 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() }
//~^ ERROR: concrete type differs from previous defining opaque type use
let null = || -> Opaque { 0 };
println!("{:?}", null());
}