mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-21 22:01:17 +01:00
11 lines
131 B
Rust
11 lines
131 B
Rust
//@ known-bug: #123629
|
|
#![feature(generic_assert)]
|
|
|
|
fn foo()
|
|
where
|
|
for<const N: usize = { assert!(u) }> ():,
|
|
{
|
|
}
|
|
|
|
fn main() {}
|