[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / malformed-overload.m
blobfd5d2f4f696b40d479fc03d51127be80de84eebe
1 // RUN: rm -rf %t
2 // RUN: %clang_cc1 -fsyntax-only -I%S/Inputs/malformed-overload -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -Wno-strict-prototypes -verify %s
3 NSLog(@"%@", path); // expected-error {{expected parameter declarator}} expected-error {{expected ')'}} expected-error {{type specifier missing}} expected-warning {{incompatible redeclaration}} expected-note {{to match this '('}} expected-note {{'NSLog' is a builtin with type}}
4 #import "X.h"
6 @class NSString;
7 void f(NSString *a) {
8  NSLog(@"***** failed to get URL for %@", a);