OSDN Git Service

Formatting fixes.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / memclass21.C
1 // { dg-do assemble  }
2 // Origin: <Corey Kosak> kosak@cs.cmu.edu
3
4 struct moo {
5   template<bool x> struct cow {};
6
7   template<bool x>
8   struct moo2 {
9     void func(cow<x> &c) { }
10   };
11 };