blob: 628d3e37610aab77130045b0847fce647a5d70ad (
plain)
1
2
3
4
5
6
|
// console.log intentionally misspelled to trigger a type error
consol.log("hello world!");
// the following error should be ignored and not output to the console
// eslint-disable-next-line
const foo = new Foo();
|