github.com/AndrienkoAleksandr/go@v0.0.19/src/go/parser/testdata/issue44504.src (about) 1 // Copyright 2021 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // Test case for issue 44504: panic due to duplicate resolution of slice/index 6 // operands. We should not try to resolve a LHS expression with invalid syntax. 7 8 package p 9 10 func _() { 11 var items []bool 12 items[] /* ERROR "operand" */ = false 13 }