mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
All but 7 tests now passing. Those 7 tests either do not refer to these circumstances or do not seem to pass even when modified to accept type specifications.
14 lines
829 B
Swift
14 lines
829 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend -emit-module -module-name ModuleA -emit-module-path %t/ModuleA.swiftmodule -primary-file %S/Inputs/TestablePrintASTLocationsModule.swift -enable-testing
|
|
// RUN: %target-swift-frontend -emit-module -module-name ModuleB -emit-module-path %t/ModuleB.swiftmodule -primary-file %S/Inputs/TestablePrintASTLocationsModule.swift -enable-testing
|
|
// RUN: not %target-swift-frontend -typecheck -I %t %s 2>&1 | %FileCheck %s
|
|
|
|
@testable import ModuleA
|
|
@testable import ModuleB
|
|
|
|
ambiguous()
|
|
|
|
// CHECK: testable-printast-locations.swift:[[@LINE-2]]:1: error: ambiguous use of 'ambiguous()'
|
|
// CHECK: ModuleA.ambiguous:1:15: note: found candidate with type '() -> ()' in module 'ModuleA'
|
|
// CHECK: ModuleB.ambiguous:1:15: note: found candidate with type '() -> ()' in module 'ModuleB'
|