aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/crash20.C
blob: 0492b72e35ebd02b78e125cb2f6f2446bffa8a97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// { dg-do compile }

// Copyright (C) 2004 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 22 Jul 2004 <nathan@codesourcery.com>

// ICE with incompletable type.

class INC;

template <typename T> class B {};

template<typename T> void Foo (B<T> &);

void Foo (INC &);

void Baz (INC *p)
{
  Foo (*p);
}