*** empty log message ***

From-SVN: r19379
This commit is contained in:
Mark Mitchell 1998-04-22 21:02:15 +00:00
parent db2767b644
commit f5710887ad
2 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,10 @@
// Build don't link:
template <class T, int i>
struct S1;
template <class T, int i, int j>
struct S2
{
typedef typename S1<T, (i >= j ? 0 : 1) >::type type;
};

View File

@ -0,0 +1,44 @@
// Build don't link:
template<class T>
struct Foo { };
template<class T1, class T2>
struct BT { };
template<class T1, class T2>
struct BT< Foo<T1>, Foo<T2> > { static const int i = 1; };
template<class T1, class T2>
struct BT< T1, Foo<T2> > { static const int i = 2; };
template<class T1, class T2>
struct BT< Foo<T1>, T2 > { static const int i = 3; };
template<class T1, class T2>
int foo(Foo<T1>, Foo<T2>)
{
return 1;
}
template<class T1, class T2>
int foo(T1, Foo<T2>)
{
return 2;
}
template<class T1, class T2>
int foo(Foo<T1>, T2)
{
return 3;
}
void f()
{
BT< double, Foo<int> >::i;
BT< Foo<int>, Foo<int> >::i;
BT< Foo<int>, float >::i;
foo(1.0, Foo<int>());
foo(Foo<int>(), Foo<int>());
foo(Foo<int>(), 1.0);
}