This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

c++/5093: internal error with template template argument class and overloaded out stream operator



>Number:         5093
>Category:       c++
>Synopsis:       internal error with template template argument class and overloaded out stream operator
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          ice-on-legal-code
>Submitter-Id:   net
>Arrival-Date:   Wed Dec 12 05:36:09 PST 2001
>Closed-Date:
>Last-Modified:
>Originator:     tobias.oberstein@gmx.de
>Release:        2.95.3
>Organization:
>Environment:
SuSE Linux 7.2 off-the-shelf
>Description:
Look at this template class, which takes a (unused)
template template argument:

template <typename T,
          template <typename> class C = std::vector>
struct Bug
{
    T x_;
};

now try the following

Bug<int> x;
std::cout << x;

even without defining the overloaded out operator, g++
will exit with an "internal compiler error" ;(


>How-To-Repeat:
toberste@grenada:~/work/pre/suffixtree > g++ -Wall -o bug bug.cpp
bug.cpp: In function `int main()':
bug.cpp:50: Internal compiler error.
bug.cpp:50: Please submit a full bug report.
bug.cpp:50: See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:
----gnatsweb-attachment----
Content-Type: text/x-c++src; name="bug.cpp"
Content-Transfer-Encoding: base64
Content-Disposition: attachment; filename="bug.cpp"

LyoKICogVGhpcyBzb3VyY2UgcmVwcm9kdWNlcyBhIGdjYyBjb21waWxlciBidWcgd2l0aAogKgog
KiAgICAgPj4+IHRlbXBsYXRlIHRlbXBsYXRlIGFyZ3VtZW50cyBhbmQgU1RMIHN0cmVhbXMgPDw8
CiAqCiAqIGdjYyAyLjk1LjMsIFN1U0UgTGludXggNy4yCiAqCiAqIHRvYmlhcy5vYmVyc3RlaW5A
Z214LmRlCiAqIDEyLzEyLzIwMDEKICovCgojaW5jbHVkZSA8aW9zdHJlYW0+CiNpbmNsdWRlIDx2
ZWN0b3I+Cgp0ZW1wbGF0ZSA8dHlwZW5hbWUgVD4Kc3RydWN0IE9rCnsKICAgIFQgeF87Cn07Cgp0
ZW1wbGF0ZSA8dHlwZW5hbWUgVD4Kb3N0cmVhbSYKb3BlcmF0b3I8PCAob3N0cmVhbSYgb3MsIE9r
PFQ+JiB4KQp7CiAgICByZXR1cm4gb3MgPDwgeC54XzsKfQoKdGVtcGxhdGUgPHR5cGVuYW1lIFQs
CiAgICAgICAgICB0ZW1wbGF0ZSA8dHlwZW5hbWU+IGNsYXNzIEMgPSBzdGQ6OnZlY3Rvcj4Kc3Ry
dWN0IEJ1Zwp7CiAgICBUIHhfOwp9OwoKdGVtcGxhdGUgPHR5cGVuYW1lIFQsCiAgICAgICAgICB0
ZW1wbGF0ZSA8dHlwZW5hbWU+IGNsYXNzIEM+Cm9zdHJlYW0mCm9wZXJhdG9yPDwgKG9zdHJlYW0m
IG9zLCBCdWc8VCxDPiYgeCkKewogICAgcmV0dXJuIG9zIDw8IHgueF87Cn0KCgppbnQgbWFpbigp
CnsKICAgIE9rPGludD4gb2s7ICAvLyBObyBwcm9ibGVtIGhlcmUuCiAgICBzdGQ6OmNvdXQgPDwg
b2s7CgogICAgQnVnPGludD4gYnVnOyAgLy8gUHJvYmxlbTogaW50ZXJuYWwgY29tcGlsZXIgZXJy
b3IuCiAgICBzdGQ6OmNvdXQgPDwgYnVnOwogICAgcmV0dXJuIDA7Cn0K


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]