about summary refs log tree commit diff
path: root/tests/crashes/131052.rs
blob: 7ae3ec08f3ed7a212af2c55e59fd9934ed6761ad (plain)
1
2
3
4
5
6
7
8
//@ known-bug: #131052
#![feature(adt_const_params)]

struct ConstBytes<const T: &'static [*mut u8; 3]>;

pub fn main() {
    let _: ConstBytes<b"AAA"> = ConstBytes::<b"BBB">;
}