6 lines
81 B
JavaScript
6 lines
81 B
JavaScript
// @validateNoCapitalizedCalls
|
|
function Foo() {
|
|
let x = Bar;
|
|
x(); // ERROR
|
|
}
|