gcc-9 testcase warning fix
warning: ‘new’ of initializer_list does not extend the lifetime of the underlying array [-Winit-list-lifetime]
This commit is contained in:
parent
b55ce0cf84
commit
75c5cb7458
2 changed files with 40 additions and 3 deletions
21
Examples/test-suite/java/cpp11_initializer_list_runme.java
Normal file
21
Examples/test-suite/java/cpp11_initializer_list_runme.java
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
|
||||
import cpp11_initializer_list.*;
|
||||
|
||||
public class cpp11_initializer_list_runme {
|
||||
|
||||
static {
|
||||
try {
|
||||
System.loadLibrary("cpp11_initializer_list");
|
||||
} catch (UnsatisfiedLinkError e) {
|
||||
System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e);
|
||||
System.exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
public static void main(String argv[]) {
|
||||
C c = new C(null);
|
||||
String joined = c.get_joined_string();
|
||||
if (!joined.equals("AbFab"))
|
||||
throw new RuntimeException("Wrong joined string " + joined);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue