blob: 7ae3ec08f3ed7a212af2c55e59fd9934ed6761ad [file] [log] [blame] [edit]
//@ 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">;
}