mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:58:10 +00:00
10 lines
172 B
Rust
10 lines
172 B
Rust
// build-pass
|
|
|
|
#![feature(generic_const_exprs)]
|
|
#![allow(unused_braces, incomplete_features)]
|
|
|
|
pub trait Foo<const N: usize> {}
|
|
pub trait Bar: Foo<{ 1 }> { }
|
|
|
|
fn main() {}
|