// RUN: %clang_cc1 %s -std=c++11 -fms-compatibility -fsyntax-only -verify
;
void
extern S *s;
constexpr int e1 = s->E;
S *; // expected-note{{declared here}}
constexpr int e2 = // expected-error{{must be initialized by a constant expression}}
->E; // expected-note{{cannot be used in a constant expression}}
constexpr int e4 = s->sdm;