| # RUN: %lldb -b -s %s | FileCheck %s | |
| expression int i; __typeof__(i) j = 1; j | |
| # CHECK: (lldb) expression int i; __typeof__(i) j = 1; j | |
| # CHECK-NEXT: (typeof (i)) {{.*}} = 1 | |
| expression int i; typeof(i) j = 1; j | |
| # CHECK: (lldb) expression int i; typeof(i) j = 1; j | |
| # CHECK-NEXT: (typeof (i)) {{.*}} = 1 | |
| expression int i; decltype(i) j = 1; j | |
| # CHECK: (lldb) expression int i; decltype(i) j = 1; j | |
| # CHECK-NEXT: (decltype(i)) {{.*}} = 1 |