mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
119 B
C++
14 lines
119 B
C++
|
|
struct Private;
|
|
typedef int (Private::*Zero);
|
|
|
|
class C {
|
|
public:
|
|
C(Zero x = 0) {}
|
|
};
|
|
|
|
void f() {
|
|
C result;
|
|
}
|
|
|