strictfp in interfaces for java 1.8 (IDEA-138501)

This commit is contained in:
Anna Kozlova
2015-03-31 13:48:27 +02:00
parent a4eba96102
commit b0db0e5444
3 changed files with 17 additions and 2 deletions
@@ -0,0 +1,5 @@
interface A {
<error descr="Illegal combination of modifiers: 'strictfp' and 'abstract'">strictfp</error> void m();
strictfp default void m1(){}
strictfp static void m2() {}
}