6 lines
84 B
Text
6 lines
84 B
Text
const field a = 1;
|
|
|
|
def main() -> field {
|
|
a = 2; // not allowed
|
|
return a;
|
|
}
|