about summary refs log tree commit diff
path: root/tests/ui/impl-trait/in-bindings/dont-make-def-id.rs
blob: d159e9ab0f9ebca05ced5883684c3e78d576ba50 (plain)
1
2
3
4
5
6
7
8
9
10
//@ 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;
}