brintos

brintos / llvm-project-archived public Read only

0
0
Text · 413 B · a266a65 Raw
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