blob: 09873a8c8c3da4fbf1c06cc329ea13f95ce69e45 [file] [log] [blame]
#![feature(type_alias_impl_trait)]
fn main() {}
mod boo {
// declared in module but not defined inside of it
pub type Boo = impl ::std::fmt::Debug; //~ ERROR could not find defining uses
}
fn bomp() -> boo::Boo {
""
}