llvm-project/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/p1-retmem.cpp

13 lines
210 B
C++
Raw Normal View History

// RUN: clang-cc -fsyntax-only -verify %s
// XFAIL
template<typename T>
struct X0 {
typedef int size_type;
size_type f0() const;
};
template<typename T>
typename X0<T>::size_type X0<T>::f0() const { }