mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
8 lines
248 B
C++
8 lines
248 B
C++
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
|
|
|
|
struct A { virtual void a(); };
|
|
struct B : A {};
|
|
struct C : B { virtual void a(); };
|
|
void (C::*x)() = &C::a;
|
|
|
|
// CHECK: @x = global { i{{[0-9]+}}, i{{[0-9]+}} } { i{{[0-9]+}} 1, i{{[0-9]+}} 0 }
|