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 go.dev/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
8package p
9
10func _() {
11  var items []bool
12  items[] /* ERROR "operand" */ = false
13}
14