1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00
ZoKrates/zokrates_cli/examples/compile_errors/generics/incompatible.zok
2020-11-10 17:04:35 +00:00

5 lines
No EOL
102 B
Text

def foo<P>(field[P] a, field[P] b) -> field:
return 42
def main() -> field:
return foo([1, 2], [1])