main: comment unused variables in mock
This commit is contained in:
parent
ab7ee592c3
commit
92a6686097
1 changed files with 3 additions and 3 deletions
|
|
@ -19,7 +19,7 @@ def main():
|
|||
|
||||
data = """
|
||||
{
|
||||
let byte: uint32 = 42;
|
||||
// let byte: uint32 = 42;
|
||||
}
|
||||
let byte: uint32;
|
||||
|
||||
|
|
@ -27,9 +27,9 @@ def main():
|
|||
/ (byte = 255) + byte;
|
||||
byte = byte + byte;
|
||||
{
|
||||
let a: uint32 = byte;
|
||||
// let a: uint32 = byte;
|
||||
}
|
||||
{ let b: uint32; }
|
||||
// { let b: uint32; }
|
||||
display(byte, 3) + 1;
|
||||
"""
|
||||
if not args.mock:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue