11 lines
133 B
Text
11 lines
133 B
Text
def foo<N>(field[N] a) -> bool {
|
|
return true;
|
|
}
|
|
|
|
def foo<P>(field[P] a) -> bool {
|
|
return true;
|
|
}
|
|
|
|
def main() {
|
|
return;
|
|
}
|