Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
specialization
/
min_specialization
/
impl-on-nonexisting.rs
blob: 77a64320d6f3758dab7e00868121f43da1b00830 [
file
] [
log
] [
blame
]
#![
feature
(
min_specialization
)]
trait
Trait
{}
impl
Trait
for
NonExistent
{}
//~^ ERROR cannot find type `NonExistent` in this scope
fn
main
()
{}