18 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -Wno-unused-value -std=c++11 %s2 3template <typename T>4struct S {5 void f() {6 __func__; // PredefinedExpr7 10; // IntegerLiteral8 10.5; // FloatingLiteral9 'c'; // CharacterLiteral10 "hello"; // StringLiteral11 true; // CXXBooleanLiteralExpr12 nullptr; // CXXNullPtrLiteralExpr13 __null; // GNUNullExpr14 }15};16 17template struct S<int>;18