mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 11:50:47 -05:00
http://llvm.org/svn/llvm-project/cfe/branches/release_28@114020 Approved by: rpaulo (mentor)
10 lines
178 B
C++
10 lines
178 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
struct X {
|
|
template<typename T, typename U>
|
|
static void f(int, int);
|
|
};
|
|
|
|
void f() {
|
|
void (*ptr)(int, int) = &X::f<int, int>;
|
|
}
|