rust/tests/crashes/119783.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
150 B
Rust
Raw Normal View History

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