mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 05:59:17 +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() {}
|