OSDN Git Service

PR c++/27427
authorreichelt <reichelt@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 6 May 2006 20:40:23 +0000 (20:40 +0000)
committerreichelt <reichelt@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 6 May 2006 20:40:23 +0000 (20:40 +0000)
* pt.c (convert_nontype_argument): Return early on invalid arguments.

* g++.dg/template/incomplete2.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@113582 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/pt.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/template/incomplete2.C [new file with mode: 0644]

index 4f460a3..5035ded 100644 (file)
@@ -1,5 +1,8 @@
 2006-05-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
 
+       PR c++/27427
+       * pt.c (convert_nontype_argument): Return early on invalid arguments.
+
        * pt.c (process_template_parm): Remove superfluous temporary.
 
        PR c++/27430
index c7d94f1..4d34da4 100644 (file)
@@ -3457,6 +3457,8 @@ convert_nontype_argument (tree type, tree expr)
      instantiated -- but here we need the resolved form so that we can
      convert the argument.  */
   expr = fold_non_dependent_expr (expr);
+  if (error_operand_p (expr))
+    return error_mark_node;
   expr_type = TREE_TYPE (expr);
 
   /* HACK: Due to double coercion, we can get a
index 3e6e725..63e3869 100644 (file)
@@ -1,3 +1,8 @@
+2006-05-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
+
+       PR c++/27427
+       * g++.dg/template/incomplete2.C: New test.
+
 2006-05-06   Richard Guenther  <rguenther@suse.de>
 
        PR tree-optimization/27151
diff --git a/gcc/testsuite/g++.dg/template/incomplete2.C b/gcc/testsuite/g++.dg/template/incomplete2.C
new file mode 100644 (file)
index 0000000..23d393e
--- /dev/null
@@ -0,0 +1,13 @@
+// PR c++/27427
+// { dg-do compile }
+
+struct A;
+
+template<A&> void foo();
+
+A a;  // { dg-error "incomplete type" }
+
+void bar()
+{
+  foo<a>();  // { dg-error "no matching function" }
+}