• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown %s -fsyntax-only -verify
2 // RUN: %clang_cc1 -triple i686-unknown-unknown %s -fsyntax-only -verify
3 #include <stddef.h>
4 
5 struct A;
6 
f()7 void 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 
16