aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lookup/java2.C
diff options
context:
space:
mode:
authorGiovanni Bajo <giovannibajo@gcc.gnu.org>2003-12-07 15:26:05 +0000
committerGiovanni Bajo <giovannibajo@gcc.gnu.org>2003-12-07 15:26:05 +0000
commitf96af3bb0739f4a1655736a3c0282160b33e12e9 (patch)
tree18bacb9a9405732c02772d542d6f6ef7d9589274 /gcc/testsuite/g++.dg/lookup/java2.C
parent9d3efef19ea8066a842f0c688cf60867a2eef111 (diff)
* g++.dg/lookup/java1.C: New test.
* g++.dg/lookup/java2.C: New test. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@74395 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/g++.dg/lookup/java2.C')
-rw-r--r--gcc/testsuite/g++.dg/lookup/java2.C47
1 files changed, 47 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/lookup/java2.C b/gcc/testsuite/g++.dg/lookup/java2.C
new file mode 100644
index 00000000000..6c78715a8ab
--- /dev/null
+++ b/gcc/testsuite/g++.dg/lookup/java2.C
@@ -0,0 +1,47 @@
+// { dg-do compile }
+// { dg-options "" }
+// Origin: Giovanni Bajo <giovannibajo at libero dot it>
+// Make sure that Java special functions can be called correctly.
+// (continue from java1.C)
+
+extern "Java"
+{
+ typedef __java_int jint;
+ namespace java
+ {
+ namespace lang
+ {
+ class Class;
+ class Object;
+ class Throwable {};
+ class Foo;
+ }
+ }
+}
+
+typedef struct java::lang::Object* jobject;
+typedef struct java::lang::Throwable* jthrowable;
+typedef class java::lang::Class* jclass;
+using java::lang::Foo;
+
+class Foo : public java::lang::Throwable
+{
+public:
+ static ::java::lang::Class class$;
+};
+
+/*
+ * Step 4: Manual declaration of _Jv_Throw
+ * This is the last case we need to test. In the other file we're testing
+ * the compiler is able to generate an artifical declaration for this
+ * function, so we need to test here if it works with a normal declaration.
+ */
+
+extern "C" jobject _Jv_AllocObject (jclass, jint) __attribute__((__malloc__));
+extern "C" void _Jv_Throw (jthrowable) __attribute__ ((__noreturn__));
+
+void Bar4(void)
+{
+ Foo* f = new java::lang::Foo;
+ throw (f);
+}