There was an error while loading. Please reload this page.
The code below used to be understood without reporting an error, now it is reporting "You seem to be initializing a member variable with itself"
class foo { foo(bool bar): bar(bar) {} private: bool bar; };
The code below used to be understood without reporting an error, now it is reporting "You seem to be initializing a member variable with itself"