Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
IndexPropertyAccess.groovy
blob: 1c106193ff0bf9df9941a3dad422b721c81c5cbc [
file
] [
log
] [
blame
]
class
X
extends
HashMap
<
Integer
,
Integer
>
{
def
getAt
(
def
k
)
{
return
"string"
}
}
def
x
=
new
X
();
print
x
[
2
].
concat
(
"a"
)