1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 31 Mar 2005 <nathan@codesourcery.com>
7 template <class T> T f(int) {return 0;}
8 template <class T, class U> T f(U){return 1;}
10 template <typename T, typename R> T checked_cast (R const &) {return 0;}
11 template <typename T, typename R> T checked_cast (R *) {return 1;}
21 if (checked_cast<int>(i) != 0)
24 if (checked_cast<int>(&i) != 1)