Static[int] can't be used in dict, list or tuple:
int_to_static_int = {i: Static[i] for i in range(1, 21)}
test.codon:1 (32-33): error: expected 'int', 'bool' or 'str'
int_to_static_int = [Static[i] for i in range(1, 21)]
test.codon:1 (32-33): error: expected 'int', 'bool' or 'str'
int_to_static_int = (Static[i] for i in range(1, 21))
test.codon:1 (32-33): error: expected 'int', 'bool' or 'str'