Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/moveBoundClassToFront/before1.java
2010-06-25 12:46:40 +04:00

5 lines
158 B
Java

// "Move bound 'java.lang.Number' to the beginning of the bounds list of type parameter 'X'" "true"
class C <X extends Runnable & <caret>Number> {
X x;
}