blob: 9307a3463ac853d4fb9b969adeb708801f840178 [file] [log] [blame]
40 columns |
>>> no spaces around braces
class Foo< T > {}
<<<
class Foo<T> {}
>>> space between names
class Foo< A,B, C,D> {}
<<<
class Foo<A, B, C, D> {}
>>> nullable in bounds
class A<T extends int ? > {}
<<<
class A<T extends int?> {}