8 lines
102 B
Rust
8 lines
102 B
Rust
//@ known-bug: #138048
|
|
struct Foo;
|
|
|
|
impl<'b> Foo {
|
|
fn bar<const V: u8>() {
|
|
let V;
|
|
}
|
|
}
|