mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 06:23:00 +00:00
11 lines
173 B
Rust
11 lines
173 B
Rust
//@ 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;
|
|
}
|