Files
swift-mirror/test/IDE/print_source_file_interface_2.swift.result
Ben Langmuir efafb7e98a [ASTPrinter] Remove space between subscript and parameter list
To match the style of TSPL, documentation, the stdlib, etc. Found by
inspection.
2016-02-12 16:23:41 -08:00

20 lines
293 B
Plaintext

/*
Copyright (c) 452 Attila the Hun. All rights reserved.
*/
/* Blah Blah */
/* More Blah Blah */
public class MyClass {
internal func doit(x: Int)
}
/// This is a very nice extension.
extension MyClass {
/// and a nice subscript.
internal subscript(i: Int) -> Int { get }
}