mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
%utils => ${SWIFT_SOURCE_DIR}/utils
%line-directive => ${SWIFT_SOURCE_DIR}/utils/line-directive
13 lines
318 B
Swift
13 lines
318 B
Swift
// RUN: mkdir -p %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() {}
|