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" ```c++ 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"