FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / crash33.C
blob757bf51027d4abad0896913cb1a334aa6902087a
1 // Build don't link:
2 // Origin: Jakub Jelinek <jakub@redhat.com>
4 template <class T>
5 inline const T& bar(const T& a, const T& b)
7   return a < b ? b : a;
10 int foo(void)
12   return bar(sizeof(int), sizeof(long));