blob: 9a41abe69206e37285d1db41a6ebb2701b07e4e0 [file] [log] [blame] [edit]
//@ known-bug: #119783
#![feature(associated_const_equality)]
trait Trait { const F: fn(); }
fn take(_: impl Trait<F = { || {} }>) {}
fn main() {}