Property with all accessors deprecated considered as deprecated
This commit is contained in:
+27
@@ -0,0 +1,27 @@
|
||||
interface JavaClass{
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
public int getSomething1();
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
public int getSomething2();
|
||||
public void setSomething2(int value);
|
||||
|
||||
public int getSomething3();
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
public void setSomething3(int value);
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
public int getSomething4();
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
public void setSomething4(int value);
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
fun foo(javaClass: JavaClass) {
|
||||
javaClass.<caret>
|
||||
}
|
||||
|
||||
// WITH_ORDER
|
||||
// EXIST: { lookupString: "something2", attributes: "bold" }
|
||||
// EXIST: { lookupString: "something3", attributes: "bold" }
|
||||
// EXIST: { lookupString: "something1", attributes: "bold strikeout" }
|
||||
// EXIST: { lookupString: "something4", attributes: "bold strikeout" }
|
||||
Reference in New Issue
Block a user