blob: 1c68e928ddd624486c46d53a7a51cdf7abf8815d (
plain)
1
2
3
4
5
6
|
// RUN: clang-pseudo -grammar=cxx -source=%s --start-symbol=statement-seq --print-forest | FileCheck %s
// Verify there is no false parse of the structured binding declaration.
ABC[post] = abc;
// CHECK: statement-seq~expression-statement := expression ;
// CHECK: postfix-expression [ expr-or-braced-init-list ]
|