nested_inheritance_interface testcase enhancement
Fixes unused variable reported by C# compiler and enhance test slightly
This commit is contained in:
parent
f1f98348b4
commit
20d96531e3
3 changed files with 12 additions and 0 deletions
|
|
@ -12,6 +12,9 @@ public class nested_inheritance_interface_runme {
|
|||
}
|
||||
}
|
||||
|
||||
private static void takeIA(IASwigInterface ia) {
|
||||
}
|
||||
|
||||
public static void main(String argv[]) {
|
||||
Class[] BNInterfaces = B.N.class.getInterfaces();
|
||||
String expectedInterfacesString = "[interface nested_inheritance_interface.IASwigInterface]";
|
||||
|
|
@ -24,5 +27,6 @@ public class nested_inheritance_interface_runme {
|
|||
|
||||
// overloaded methods check
|
||||
B.N d = new B.N();
|
||||
takeIA(d);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue