Skip to content

Commit

Permalink
add one more test
Browse files Browse the repository at this point in the history
  • Loading branch information
jackparsonss committed Jun 28, 2024
1 parent 8de2a2c commit bddb03a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/input/errors/symbol/double_param.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
fn foo(let x: i32, let x: i32): i32 {
return 0;
}

fn main(): i32 {
foo(1,2);
return 0;
}
1 change: 1 addition & 0 deletions tests/output/errors/symbol/double_param.out
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SymbolError on Line 1

0 comments on commit bddb03a

Please sign in to comment.