Commit 92c4f0e1 authored by nathan's avatar nathan
Browse files

* g++.old-deja/g++.pt/crash56.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36135 138bc75d-0d04-0410-961f-82ee72b054a4
parent 1ac198fa
2000-09-04 Nathan Sidwell <nathan@codesourcery.com>
* g++.old-deja/g++.pt/crash56.C: New test.
2000-09-04 Nathan Sidwell <nathan@codesourcery.com>
* g++.old-deja/g++.pt/koenig1.C: New test.
......
// Build don't link:
//
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 1 Sep 2000 <nathan@codesourcery.com>
// bug 127. We ICE'd when given a non-template TYPE_DECL as a template name.
template <class charT>
class basic_string
{
public:
typedef charT* iterator;
explicit basic_string ();
~basic_string ();
};
void foo () {
basic_string<char>::iterator<char> p; // ERROR - not a template // ERROR - no type
}
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