Fix test data - Strictfp is not applicable
This commit is contained in:
@@ -4,5 +4,6 @@ class A {
|
|||||||
|
|
||||||
transient int field2 = 1;
|
transient int field2 = 1;
|
||||||
|
|
||||||
|
// Should work even for bad modifiers
|
||||||
strictfp double field3 = 2;
|
strictfp double field3 = 2;
|
||||||
}
|
}
|
||||||
@@ -1,8 +1,10 @@
|
|||||||
|
// ERROR: This annotation is not applicable to target 'member property'
|
||||||
class A {
|
class A {
|
||||||
Deprecated("")
|
Deprecated("")
|
||||||
Volatile var field1 = 0
|
Volatile var field1 = 0
|
||||||
|
|
||||||
Transient var field2 = 1
|
Transient var field2 = 1
|
||||||
|
|
||||||
|
// Should work even for bad modifiers
|
||||||
Strictfp var field3 = 2.0
|
Strictfp var field3 = 2.0
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user