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