mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 02:31:13 +00:00
11 lines
211 B
Rust
11 lines
211 B
Rust
//@ known-bug: #131507
|
|
//@ compile-flags: -Zmir-enable-passes=+GVN -Zmir-enable-passes=+Inline -Zvalidate-mir
|
|
#![feature(non_lifetime_binders)]
|
|
|
|
fn brick()
|
|
where
|
|
for<T> T: Copy,
|
|
{
|
|
|| format_args!("");
|
|
}
|