blob: 428e95ccf96e10655d2dace01af8b187e8c25960 [file] [log] [blame]
Richard Smith241ae2c2014-10-28 17:00:19 +00001// RUN: not %clang_cc1 -verify %s -std=c++11
2
3// PR17730
4template <typename T>
5void S<T>::mem1();
6
7template <typename T>
8void S<T>::mem2() {
9 const int I = sizeof(T);
10 (void)I;
11}