mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
4 lines
159 B
C++
4 lines
159 B
C++
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
|
|
struct A {};
|
|
A& (A::*x)(const A&) = &A::operator=;
|
|
// CHECK: define linkonce_odr %struct.A* @_ZN1AaSERKS_
|