p2-generic-lambda-1y.cpp 1.2 KB

12345678910111213141516171819202122232425
  1. // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++1y -DCXX1Y
  2. // prvalue
  3. void prvalue() {
  4. auto&& x = [](auto a)->void { };
  5. auto& y = [](auto *a)->void { }; // expected-error{{cannot bind to a temporary of type}}
  6. }
  7. namespace std {
  8. class type_info;
  9. }
  10. struct P {
  11. virtual ~P();
  12. };
  13. void unevaluated_operand(P &p, int i) { //expected-note{{declared here}}
  14. // FIXME: this should only emit one error.
  15. int i2 = sizeof([](auto a, auto b)->void{}(3, '4')); // expected-error{{lambda expression in an unevaluated operand}} \
  16. // expected-error{{invalid application of 'sizeof'}}
  17. const std::type_info &ti1 = typeid([](auto &a) -> P& { static P p; return p; }(i)); // expected-warning {{expression with side effects will be evaluated despite being used as an operand to 'typeid'}}
  18. const std::type_info &ti2 = typeid([](auto) -> int { return i; }(i)); // expected-error{{lambda expression in an unevaluated operand}}\
  19. // expected-error{{cannot be implicitly captured}}\
  20. // expected-note{{begins here}}
  21. }