Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0a9793c55be9b32eb977005b8b7f4727634d3ad6 (plain) (blame)
1
2
3
4
5
6
7
8
class F {
	void foo() {
		if (local.useFlag == LocalVariableBinding.UNUSED
				&& (local.declaration != null) // unused (and non secret) local
				&& ((local.declaration.bits & AstNode.IsLocalDeclarationReachableMASK) != 0)) { // declaration is reachable
		}
	}
}

Back to the top