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

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

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