about summary refs log tree commit diff
path: root/tests/ui/const-generics/generic_const_exprs/inline-const-in-const-generic-defaults.rs
blob: 073e0fe0a7fdb6abf8a274f31c1b8aff4fd3a7fe (plain)
1
2
3
4
5
6
7
8
//@ check-pass

#![feature(generic_const_exprs)]
#![allow(incomplete_features)]

pub struct ConstDefaultUnstable<const N: usize = { const { 3 } }>;

pub fn main() {}