mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
automatically pass down TypeCheckExprFlags::AllowUnresolvedTypeVariables IFF we have no contextual type. This gives us UnresolvedTypes in more cases, which improves diagnostics in various situations, and also simplifies CSDiag. The change to misc_diagnostics.swift is a particularly nice progression. Swift SVN r31406
80 lines
2.6 KiB
Swift
80 lines
2.6 KiB
Swift
// RUN: rm -rf %t
|
|
// RUN: mkdir -p %t
|
|
// RUN: %target-swift-frontend -emit-module -o %t %S/Inputs/overload_intFunctions.swift
|
|
// RUN: %target-swift-frontend -emit-module -o %t %S/Inputs/overload_boolFunctions.swift
|
|
// RUN: %target-swift-frontend -emit-module -o %t %S/Inputs/overload_vars.swift
|
|
// RUN: %target-swift-frontend -parse %s -I %t -sdk "" -verify
|
|
|
|
// RUN: not %target-swift-frontend -dump-ast %s -I %t -sdk "" > %t.astdump 2>&1
|
|
// RUN: FileCheck %s < %t.astdump
|
|
|
|
import overload_intFunctions
|
|
import overload_boolFunctions
|
|
import overload_vars
|
|
import var overload_vars.scopedVar
|
|
import func overload_boolFunctions.scopedFunction
|
|
|
|
struct LocalType {}
|
|
func something(obj: LocalType) -> LocalType { return obj } // expected-note {{found this candidate}}
|
|
func something(a: Int, _ b: Int, _ c: Int) -> () {} // expected-note {{found this candidate}}
|
|
|
|
var _ : Bool = something(true)
|
|
var _ : Int = something(1)
|
|
var _ : (Int, Int) = something(1, 2)
|
|
var _ : LocalType = something(LocalType())
|
|
var _ : () = something(1, 2, 3)
|
|
something = 42 // expected-error {{ambiguous reference to member 'something'}}
|
|
|
|
let ambValue = ambiguousWithVar // no-warning - var preferred
|
|
let ambValueChecked: Int = ambValue
|
|
ambiguousWithVar = 42 // no-warning
|
|
ambiguousWithVar(true) // no-warning
|
|
|
|
var localVar : Bool
|
|
localVar = false
|
|
localVar = 42 // expected-error {{cannot assign value of type 'Int' to type 'Bool'}}
|
|
localVar(42) // expected-error {{cannot call value of non-function type 'Bool'}}
|
|
var _ : localVar // should still work
|
|
|
|
_ = scopedVar // no-warning
|
|
scopedVar(42) // expected-error {{cannot call value of non-function type 'Int'}}
|
|
|
|
var _ : Bool = scopedFunction(true)
|
|
var _ : Int = scopedFunction(42)
|
|
scopedFunction = 42 // expected-error {{ambiguous reference to member 'scopedFunction'}}
|
|
|
|
// FIXME: Should be an error -- a type name and a function cannot overload.
|
|
var _ : Int = TypeNameWins(42)
|
|
|
|
TypeNameWins = 42 // expected-error {{ambiguous reference to member 'TypeNameWins'}}
|
|
var _ : TypeNameWins // no-warning
|
|
|
|
// rdar://problem/21739333
|
|
protocol HasFooSub : HasFoo { }
|
|
|
|
extension HasFooSub {
|
|
var foo: Int { return 0 }
|
|
}
|
|
|
|
// CHECK-LABEL: func_decl "testHasFooSub(_:)"
|
|
func testHasFooSub(hfs: HasFooSub) -> Int {
|
|
// CHECK: return_stmt
|
|
// CHECK-NOT: func_decl
|
|
// CHECK: member_ref_expr{{.*}}decl=overload_vars.(file).HasFoo.foo
|
|
return hfs.foo
|
|
}
|
|
|
|
extension HasBar {
|
|
var bar: Int { return 0 }
|
|
}
|
|
|
|
// CHECK-LABEL: func_decl "testHasBar(_:)"
|
|
func testHasBar(hb: HasBar) -> Int {
|
|
// CHECK: return_stmt
|
|
// CHECK-NOT: func_decl
|
|
// CHECK: member_ref_expr{{.*}}decl=overload_vars.(file).HasBar.bar
|
|
return hb.bar
|
|
}
|
|
|
|
|