blob: b8e0f46e4f8f696cedf56db2c8aa31d222023712 (
plain)
1
2
3
4
5
6
7
8
9
|
//@ compile-flags: -Z parse-crate-root-only
#![feature(const_trait_impl)]
// This is going down the slice/array parsing route
impl [const] T {}
//~^ ERROR: expected identifier, found `]`
impl const T {}
|