Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
impl-trait
/
in-bindings
/
dont-make-def-id.rs
blob: d159e9ab0f9ebca05ced5883684c3e78d576ba50 [
file
] [
log
] [
blame
]
//@ check-pass
// Make sure we don't create an opaque def id for ITIB.
#![
crate_type
=
"lib"
]
#![
feature
(
impl_trait_in_bindings
)]
fn
foo
()
{
let
_
:
impl
Sized
=
0
;
}