blob: d0321e9101979d8b329283947c61af62e57e9077 [file] [log] [blame]
Anders Carlsson315d2292009-06-07 18:45:35 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3// @encode expressions
4
5template <typename T> struct Encode {
6 static const char *encode(T t) {
7 return @encode(T);
8 }
9};
10
11template struct Encode<int>;
12template struct Encode<double>;