// RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s
int &;
int &i1 = 0.123_x1;
double &;
int &i2 = 45._x1;
char &;
int &i3 = 0377e-1_x1;
int &i4 = 1e1000000_x1; // expected-warning {{too large for type 'long double'}}
double &;
double &i5 = 1e1000000_x2;
constexpr int
static_assert;