blob: a8c5f2df86eb6eb94452a14fdaa50e77ea4f587d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
struct bar
{
void (Namespace::*method)(Class& param);
};
void Class::Foo(void (*callback)(const Class& entry))
{
}
void foo()
{
int a = 1; // if you comment this out, the bug stops reproducing
}
|