prettier/tests/optional/generic.js

6 lines
60 B
JavaScript

function x<T>(x: T = 0) {}
class C {
x<T>(x: T = 0) {}
}