blob: 84fc64b78b60eebc30e0b24a869a8b3149323c9a [file] [log] [blame]
// RUN: %empty-directory(%t)
// RUN: %{python} %utils/split_file.py -o %t %s
// RUN: %target-swift-frontend -dump-interface-hash %t/a.swift 2> %t/a.hash
// RUN: %target-swift-frontend -dump-interface-hash %t/b.swift 2> %t/b.hash
// RUN: cmp %t/a.hash %t/b.hash
// BEGIN a.swift
func f() -> Int {
return 0
}
// BEGIN b.swift
func f() -> Int {
return 1
}