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