summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/typeof1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/ext/typeof1.C')
-rw-r--r--gcc/testsuite/g++.dg/ext/typeof1.C21
1 files changed, 21 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/ext/typeof1.C b/gcc/testsuite/g++.dg/ext/typeof1.C
new file mode 100644
index 000000000..a3c13c8ae
--- /dev/null
+++ b/gcc/testsuite/g++.dg/ext/typeof1.C
@@ -0,0 +1,21 @@
+// Test typeof template argument substitution
+
+// Copyright (C) 2001 Free Software Foundation
+// Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
+// { dg-do compile }
+// { dg-options "" }
+
+template <class T> struct A {
+ void f() {}
+ void g(T* t) {
+ A<typeof(t)> a;
+ a.f();
+ }
+};
+
+int main()
+{
+ A<int> a;
+ int b;
+ a.g(&b);
+}