p1-retmem.cpp revision bc0a2226c7fcd18b29b6846049e2cfcb872d3593
1// RUN: clang-cc -fsyntax-only -verify %s
2// XFAIL
3
4template<typename T>
5struct X0 {
6  typedef int size_type;
7
8  size_type f0() const;
9};
10
11template<typename T>
12typename X0<T>::size_type X0<T>::f0() const { }
13