mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
8 lines
222 B
C++
8 lines
222 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 %0 { i{{[0-9]+}} 1, i{{[0-9]+}} 0 }
|