Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
RawArrayStyleAccess.groovy
blob: 9eb27414b7cc1dbba24906a73adb45b2fe43088b [
file
] [
log
] [
blame
]
class
C
<
T
>
{
T a
;
T getAt
(
int
i
){
return
a
};
}
C c
=
new
C
();
c
.
a
=
"abc"
;
Date
s
=<
warning descr
=
"Cannot assign 'Object' to 'Date'"
>
c
[
0
]</
warning
>;