child of #14942: check doc: https://checkstyle.org/checks/coding/innerassignment.html --- ``` public class Test { void test(Object obj) { boolean _ = false; if ( _ = true) {} // compile time error, Using '_' as a reference is not allowed } } ``` --- Unnamed variables can't be assigned. no update is needed
child of #14942:
check doc: https://checkstyle.org/checks/coding/innerassignment.html
Unnamed variables can't be assigned. no update is needed