# UnsupportedPropertyReferenceUsage Psalm cannot guarantee the soundness of code that uses references to properties. ### Examples of Uncaught Errors * Instance property assigned wrong type: ```php b; $b = ''; // Fatal error ``` * Static property assigned wrong type: ```php b; $b = 1; // Fatal error ```