Commit 756b2d5e by Richard Sandiford Committed by Richard Sandiford

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

From-SVN: r46288
parent d9f818d9
2001-10-14 Richard Sandiford <rsandifo@redhat.com>
* g++.dg/template/unify2.C: New test.
2001-10-14 Richard Sandiford <rsandifo@redhat.com>
* g++.dg/other/exception-specification.C: New test
2001-10-13 Tom Rix <trix@redhat.com>
......
// { dg-do compile }
template<int I> void f1 (char [][I+1]) {}
template<int I> void f2 (char [][I+0]) {}
template<int I> void f3 (char [][I]) {}
template<int I> void f4 (char [][I-0]) {}
template<int I> void f5 (char [][I-1]) {}
template void f1 (char [][6]); // { dg-error "does not match" }
template void f2 (char [][6]); // { dg-error "does not match" }
template void f3 (char [][6]);
template void f4 (char [][6]); // { dg-error "does not match" }
template void f5 (char [][6]); // { dg-error "does not match" }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment