Files
clang-p2996/clang/test/Import/objc-param-decl/test.m
Paul Robinson 64e4d03c68 [lit][AIX] Convert clang tests to use 'target={{.*}}-aix{{.*}}'
Part of the project to eliminate special handling for triples in lit
expressions.

Differential Revision: https://reviews.llvm.org/D137437
2022-12-02 09:44:15 -08:00

13 lines
328 B
Objective-C

// UNSUPPORTED: -zos, target={{.*}}-aix{{.*}}
// RUN: clang-import-test -dump-ast -x objective-c++ -import %S/Inputs/S.m -expression %s | FileCheck %s
// CHECK: ObjCTypeParamDecl
// CHECK-SAME: FirstParam
// CHECK-SAME: 'id<NSString>'
// CHECK-NEXT: ObjCTypeParamDecl
// CHECK-SAME: 'id':'id'
void expr() {
Dictionary *d;
}