diff options
Diffstat (limited to 'Tests/Fortran/mycxx.cxx')
-rw-r--r-- | Tests/Fortran/mycxx.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/Fortran/mycxx.cxx b/Tests/Fortran/mycxx.cxx new file mode 100644 index 0000000..bf04062 --- /dev/null +++ b/Tests/Fortran/mycxx.cxx @@ -0,0 +1,6 @@ +extern "C" int myc(void); +extern "C" int mycxx(void) +{ + delete new int; + return myc(); +} |