blob: 9f1b89aacccfebae69f0ac6812854da62b51779d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Test for conversion from stateless lambda to function pointer.
// { dg-do compile { target c++11_only } }
// { dg-final { scan-assembler "weak\[^\n\r\]*_?_ZZ1fvENKUlvE_cvPFvvEEv" { target { ! { *-*-darwin* *-*-mingw* *-*-cygwin } } } } }
inline void f()
{
void (*pfn)() = []{};
}
int main()
{
f();
}
|