blob: f86e72b288cde03101edda6e02ffe1c4305aecfc [file] [log] [blame]
Anders Carlsson1cca74e2009-05-17 02:06:04 +00001// RUN: clang-cc -triple x86_64-unknown-unknown %s -fsyntax-only -verify &&
2// RUN: clang-cc -triple i686-unknown-unknown %s -fsyntax-only -verify
3#include <stddef.h>
4
5struct A;
6
7void f() {
8 int A::*dataMember;
9
10 int (A::*memberFunction)();
11
12 typedef int assert1[sizeof(dataMember) == sizeof(ptrdiff_t) ? 1 : -1];
13 typedef int assert2[sizeof(memberFunction) == sizeof(ptrdiff_t) * 2 ? 1 : -1];
14}
15