aboutsummaryrefslogtreecommitdiff
path: root/test/SemaObjC/invalid-receiver.m
blob: e79df96942ccf9d61afa9da28da582d2eed65d98 (plain) (blame)
1
2
3
4
5
6
7
8
9
// RUN: clang-cc -fsyntax-only -verify %s

typedef struct NotAClass {
  int a, b;
} NotAClass;

void foo() {
  [NotAClass nonexistent_method]; // expected-error {{invalid receiver to message expression}}
}