Fix test data - Strictfp is not applicable

This commit is contained in:
Nikolay Krasko
2015-09-12 20:49:17 +03:00
parent d57e90f1ec
commit ae6731698c
2 changed files with 3 additions and 0 deletions
@@ -4,5 +4,6 @@ class A {
transient int field2 = 1;
// Should work even for bad modifiers
strictfp double field3 = 2;
}
@@ -1,8 +1,10 @@
// ERROR: This annotation is not applicable to target 'member property'
class A {
Deprecated("")
Volatile var field1 = 0
Transient var field2 = 1
// Should work even for bad modifiers
Strictfp var field3 = 2.0
}