// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
;
int i = sizeof; // ok
int j = sizeof; // ok
;
// Make sure the rule for unevaluated operands works correctly with typeid.
;
const std::type_info& k = typeid;
const std::type_info& m = typeid; // expected-error {{invalid use of non-static data member}}
const std::type_info& n = typeid;