rust/tests/crashes/119381.rs

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

7 lines
154 B
Rust
Raw Normal View History

2024-04-15 21:01:02 +00:00
//@ known-bug: #119381
#![feature(with_negative_coherence)]
trait Trait {}
impl<const N: u8> Trait for [(); N] {}
impl<const N: i8> Trait for [(); N] {}