projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f17a7a
)
* g++.dg/parse/parse1.C: New test.
author
Neil Booth
<neil@gcc.gnu.org>
Wed, 1 Jan 2003 00:13:48 +0000
(
00:13
+0000)
committer
Neil Booth
<neil@gcc.gnu.org>
Wed, 1 Jan 2003 00:13:48 +0000
(
00:13
+0000)
From-SVN: r60723
gcc/testsuite/g++.dg/parse/parse1.C
[new file with mode: 0644]
patch
|
blob
diff --git a/gcc/testsuite/g++.dg/parse/parse1.C
b/gcc/testsuite/g++.dg/parse/parse1.C
new file mode 100644
(file)
index 0000000..
cbac6da
--- /dev/null
+++ b/
gcc/testsuite/g++.dg/parse/parse1.C
@@ -0,0
+1,9
@@
+/* PR c++/50 */
+/* { dg-do compile } */
+
+namespace A {typedef int Z;}
+int main(void)
+{
+ A::Z* z;
+ z->A::Z::~Z();
+}