projects
/
idea
/
community.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
IDEA-52789: Groovy map literals should have LinkedHashMap type
[idea/community.git]
/
plugins
/
groovy
/
testdata
/
highlighting
/
IndexPropertyAccess.groovy
1
class X extends HashMap<Integer, Integer> {
2
def getAt(def k) {
3
return "string"
4
}
5
}
6
7
def x = new X();
8
print x[2].concat("a")