aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/invalid_duplicate_test_decl_name.zig
blob: 0e59795993f604b58e2805beb4fe07410e9b0e59 (plain)
1
2
3
4
5
6
7
8
9
10
11
test "thingy" {}
test "thingy" {}

// error
// backend=stage2
// target=native
// is_test=true
//
// :1:6: error: duplicate test name 'thingy'
// :2:6: note: duplicate test here
// :1:1: note: struct declared here