// RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s
using size_t = decltype;
;
;
using X = T;
int ; // expected-warning {{string literal operator templates are a GNU extension}}
double ;
auto a="string"_x;
auto b=42_x;
same_type<decltype, int> test_a;
same_type<decltype, double> test_b;
char ;
auto c="string"_x;
auto d=L"string"_x;
same_type<decltype, char> test_c;
same_type<decltype, int> test_d;