mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
9 lines
150 B
Rust
9 lines
150 B
Rust
//@ known-bug: #119783
|
|
#![feature(associated_const_equality)]
|
|
|
|
trait Trait { const F: fn(); }
|
|
|
|
fn take(_: impl Trait<F = { || {} }>) {}
|
|
|
|
fn main() {}
|