mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
7 lines
161 B
Rust
7 lines
161 B
Rust
//@ known-bug: #136063
|
|
#![feature(generic_const_exprs)]
|
|
trait A<const B: u8 = X> {}
|
|
impl A<1> for bool {}
|
|
fn bar(arg : &dyn A<x>) { bar(true) }
|
|
pub fn main() {}
|