Files
swift-mirror/test/SourceKit/SyntaxMapData/Inputs/syntaxmap-edit-nested-token.swift
2017-09-14 21:34:22 -07:00

20 lines
386 B
Swift

/// This function does stuff
///
/// - parameter first: The first parameter
///
/// - returns: The return value
func foo(first: Int) -> String {
return ""
}
let x = "Changing this string should only affect this line"
/// This function does other stuff
///
/// - parameter first: The first parameter
///
/// - returns: The return value
func bar(first: Int) -> String {
return ""
}