1// { dg-do assemble  }
2// Copyright (C) 2000 Free Software Foundation, Inc.
3// Contributed by Nathan Sidwell 7 Nov 2000 <nathan@codesourcery.com>
4// Origin: bug 510 wolfgang.bangerth@iwr.uni-heidelberg.de
5
6struct Example {
7template <class U> void operator= (U);
8};
9
10template <>
11void Example::operator=<double> (double);
12