1// { dg-do assemble  }
2
3// Copyright (C) 2000 Free Software Foundation, Inc.
4// Contributed by Nathan Sidwell 28 Nov 2000 <nathan@codesourcery.com>
5
6// Inspired by 756. We'd ICE when trying to define a member of an
7// incomplete template type.
8
9template<class X> struct ObjCount;
10
11template<class X> int ObjCount<X>::m; // { dg-error "" } undefined type
12