blob: a07d8e011f78c8f7fb8a3e2b170c2334d3a966fd [file] [log] [blame]
Mike Stump3dee6ef2009-07-30 00:22:38 +00001// RUN: clang-cc %s -emit-llvm -o - -std=c++0x
2
3class A {
4public:
5 virtual void foo();
6};
7
8static_assert (sizeof (A) == (sizeof(void *)), "vtable pointer layout");