about summary refs log tree commit diff
path: root/tests/crashes/136379.rs
blob: 077b373e3b5d6f569a0267883109be674e88a6c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ known-bug: #136379
#![feature(min_generic_const_args)]
pub struct S();

impl S {
    pub fn f() -> [u8; S] {
        []
    }
}

pub fn main() {}