blob: b8dfe9b5cc9864116c25f09418b981f9824e66b7 [file] [log] [blame]
40 columns |
>>>
Function ( ) f;
<<<
Function() f;
>>>
void Function( int i, String s) f;
<<<
void Function(int i, String s) f;
>>>
Function( int i, [ String s, bool b ] ) f;
<<<
Function(int i, [String s, bool b]) f;
>>>
Function( int i, { String s, bool b } ) f;
<<<
Function(int i, {String s, bool b}) f;
>>>
Function < T extends S > () f;
<<<
Function<T extends S>() f;