8 lines
87 B
Text
8 lines
87 B
Text
struct A<N> {
|
|
field[N] a;
|
|
}
|
|
|
|
def main() {
|
|
A<_> a = A { a: [1] };
|
|
return;
|
|
}
|