mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-07 23:07:14 +02:00
16 lines
312 B
Plaintext
16 lines
312 B
Plaintext
testdata/multiple_errors:1:7-19 Unused variable: foo
|
|
|
|
local foo = {}[42];
|
|
|
|
|
|
testdata/multiple_errors:2:1-10 Indexed value is assumed to be an array, but index is not a number
|
|
|
|
[]["foo"]
|
|
|
|
|
|
testdata/multiple_errors:1:13-19 Indexed value is assumed to be an object, but index is not a string
|
|
|
|
local foo = {}[42];
|
|
|
|
|