rust/tests/crashes/119701.rs

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

22 lines
350 B
Rust
Raw Normal View History

//@ known-bug: #119701
#![feature(const_trait_impl, effects, generic_const_exprs)]
fn main() {
let _ = process::<()>([()]);
}
fn process<T: const Trait>() -> [(); T::make(2)] {
input
}
#[const_trait]
trait Trait {
fn make(input: u8) -> usize;
}
impl const Trait for () {
fn make(input: usize) -> usize {
input / 2
}
}