blob: 61047c03098fb733160851b93826c89b884ae6b4 [file] [log] [blame]
Fariborz Jahanian62c92582011-04-25 18:49:15 +00001// RUN: %clang_cc1 -fsyntax-only -verify -triple x86_64-apple-darwin9 %s
2
3#pragma ms_struct on
4
5#pragma ms_struct off
6
7#pragma ms_struct reset
8
9#pragma ms_struct // expected-warning {{incorrect use of '#pragma ms_struct on|off' - ignored}}
10
11#pragma ms_struct on top of spaghetti // expected-warning {{extra tokens at end of '#pragma ms_struct' - ignored}}
12
13struct foo
14{
15 int a;
16 int b;
17 char c;
18};
19