brintos

brintos / llvm-project-archived public Read only

0
0
Text · 340 B · 3c093f1 Raw
18 lines · plain
1// RUN: rm -rf %t2// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs/lookup-assert-protocol %s -verify3// expected-no-diagnostics4 5#include "Derive.h"6#import <H3.h>7 8__attribute__((objc_root_class))9@interface Thing<DerivedProtocol>10@end11 12@implementation Thing13- (void)test {14}15- (void)test2 {16}17@end18