blob: ea91b527e555a8e7b488131c6aa0776fd8bed6f1 [file] [log] [blame]
// RUN: %empty-directory(%t)
// RUN: %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: not cmp %t/a.hash %t/b.hash
// BEGIN a.swift
func f() {}
// BEGIN b.swift
func f() {}
func g() {}