11 lines
139 B
Text
11 lines
139 B
Text
const field F = 10;
|
|
const u32 A = 10;
|
|
const u32 B = A;
|
|
|
|
def foo<N>(field X) -> field[N] {
|
|
return [X; N];
|
|
}
|
|
|
|
def main() {
|
|
return;
|
|
}
|