java-decompiler: tests moved
This commit is contained in:
32
testData/results/TestDeprecations.dec
Normal file
32
testData/results/TestDeprecations.dec
Normal file
@@ -0,0 +1,32 @@
|
||||
package pkg;
|
||||
|
||||
|
||||
public class TestDeprecations {
|
||||
|
||||
/** @deprecated */
|
||||
public int byComment;
|
||||
/** @deprecated */
|
||||
@Deprecated
|
||||
public int byAnno;
|
||||
|
||||
|
||||
/** @deprecated */
|
||||
public void byComment() {
|
||||
}
|
||||
|
||||
/** @deprecated */
|
||||
@Deprecated
|
||||
public void byAnno() {
|
||||
}
|
||||
|
||||
/** @deprecated */
|
||||
@Deprecated
|
||||
public static class ByAnno {
|
||||
|
||||
}
|
||||
|
||||
/** @deprecated */
|
||||
public static class ByComment {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user