Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / unsorted2.C
blob17d9fa4f9de4cd94c53fc128a0b6666b16934077
1 // { dg-do assemble  }
2 // GROUPS passed unsorted
3 // code-gen file
4 // From: klaus@steinitz.mathematik.uni-dortmund.de
5 // Date:     Mon, 15 Nov 1993 16:51:11 +0100
6 // Message-ID: <9311151551.AA17761@steinitz.mathematik.uni-dortmund.de>
8 template <int A,int B>
9 class X
13 template <int A,int B,int C>
14 X<A,C> f(X<A,B>,X<B,C>)
16   X<A,C> result;
17   return result;
20 int main()
22   X<1,3> x;
23   X<1,2> y;
24   X<2,3> z;
25   x=f(y,z);