blob: e99f5435626cf7ee8736b095b308c1d70f2ac91b [file]
'use strict';
function testX(a = true) {
const x = 1; // caret on x here does not highlight usage of x in next line
x; // caret on x here highlights both x
function () {
}
}