Warning, /sdk/clazy/docs/checks/README-static-pmf.md is written in an unsupported language. File is not indexed.

0001 # static-pmf
0002 
0003 Warns when storing a pointer to `QObject` member function into a static variable and passing it to a connect statement.
0004 This is known to make the connect statement fail when the code is built with **MingW**.
0005 
0006 Example:
0007 ```
0008 static auto pmf = &QObject::destroyed;
0009 QCOMPARE(pmf, &QObject::destroyed); // fails
0010 ```