• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %check_clang_tidy -expect-clang-tidy-error %s readability-identifier-naming %t
2 
3 // This used to cause a null pointer dereference.
4 auto [left] = right;
5 // CHECK-MESSAGES: :[[@LINE-1]]:15: error: use of undeclared identifier 'right'
6