main: comment unused variables in mock

This commit is contained in:
Antoine Viallon 2023-05-24 00:45:09 +02:00
parent ab7ee592c3
commit 92a6686097
Signed by: aviallon
GPG key ID: D126B13AB555E16F

View file

@ -19,7 +19,7 @@ def main():
data = """ data = """
{ {
let byte: uint32 = 42; // let byte: uint32 = 42;
} }
let byte: uint32; let byte: uint32;
@ -27,9 +27,9 @@ def main():
/ (byte = 255) + byte; / (byte = 255) + byte;
byte = byte + byte; byte = byte + byte;
{ {
let a: uint32 = byte; // let a: uint32 = byte;
} }
{ let b: uint32; } // { let b: uint32; }
display(byte, 3) + 1; display(byte, 3) + 1;
""" """
if not args.mock: if not args.mock: