blob: e898a4896825962b1ad8785f60d30de9859d7c6e (
plain)
1
2
3
4
5
6
7
8
9
10
|
// RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s
template<typename T>
struct X {
void f() {}
};
template inline void X<int>::f(); // expected-error{{'inline'}}
// FIXME: test constexpr
|