2009-07-22 07:53:31 +08:00
|
|
|
// RUN: clang-cc -fsyntax-only -verify %s
|
|
|
|
// XFAIL
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct X0 {
|
|
|
|
typedef int size_type;
|
|
|
|
|
|
|
|
size_type f0() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
2009-07-28 05:00:51 +08:00
|
|
|
typename X0<T>::size_type X0<T>::f0() const { }
|