rust/tests/crashes/136379.rs

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

12 lines
150 B
Rust
Raw Normal View History

2025-03-07 23:17:25 +01:00
//@ known-bug: #136379
#![feature(min_generic_const_args)]
pub struct S();
impl S {
pub fn f() -> [u8; S] {
[]
}
}
pub fn main() {}