11 lines · cpp
1// RUN: %clang_cc1 %s -emit-llvm-only2// PR70403struct fake_tuple;4struct connection {5 void bar(fake_tuple);6};7void (connection::*a)(fake_tuple) = &connection::bar;8void f() {9 void (connection::*b)(fake_tuple) = &connection::bar;10}11