mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-08 13:18:32 +00:00
22 lines
306 B
Rust
22 lines
306 B
Rust
![]() |
//@ compile-flags: -Znext-solver
|
||
|
//@ known-bug: #132067
|
||
|
//@ check-pass
|
||
|
|
||
|
#![feature(const_trait_impl, effects)]
|
||
|
|
||
|
struct S;
|
||
|
#[const_trait]
|
||
|
trait Trait<const N: u32> {}
|
||
|
|
||
|
const fn f<
|
||
|
T: Trait<
|
||
|
{
|
||
|
struct I<U: ~const Trait<0>>(U);
|
||
|
0
|
||
|
},
|
||
|
>,
|
||
|
>() {
|
||
|
}
|
||
|
|
||
|
pub fn main() {}
|