blob: 151f3931b53f9e0b2c47e3625ad5d402488891b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// RUN: clang-pseudo -grammar=cxx -source=%s --start-symbol=statement-seq --print-forest | FileCheck %s
// Verify the else should belong to the nested if statement
if (true) if (true) {} else {}
// CHECK: statement-seq~selection-statement := IF ( condition ) statement
// CHECK-NEXT: ├─IF
// CHECK-NEXT: ├─(
// CHECK-NEXT: ├─condition~TRUE
// CHECK-NEXT: ├─)
// CHECK-NEXT: └─statement~selection-statement
// CHECK-NEXT: ├─IF
// CHECK-NEXT: ├─(
// CHECK-NEXT: ├─condition~TRUE
// CHECK-NEXT: ├─)
// CHECK-NEXT: ├─statement~compound-statement := { }
// CHECK-NEXT: │ ├─{
// CHECK-NEXT: │ └─}
// CHECK-NEXT: ├─ELSE
// CHECK-NEXT: └─statement~compound-statement := { }
// CHECK-NEXT: ├─{
// CHECK-NEXT: └─}
|