Skip to content

[NFC] Add a test for constraint generation failures in a pattern binding decl inside of a function builder #32607

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 30, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion test/Constraints/function_builder_diags.swift
Original file line number Diff line number Diff line change
Expand Up @@ -418,11 +418,14 @@ func testNonExhaustiveSwitch(e: E) {
// rdar://problem/59856491
struct TestConstraintGenerationErrors {
@TupleBuilder var buildTupleFnBody: String {
let a = nil // expected-error {{'nil' requires a contextual type}}
String(nothing) // expected-error {{cannot find 'nothing' in scope}}
}

func buildTupleClosure() {
tuplify(true) { _ in
// FIXME: suppress the ambiguity error
tuplify(true) { _ in // expected-error {{type of expression is ambiguous without more context}}
let a = nothing // expected-error {{cannot find 'nothing' in scope}}
String(nothing) // expected-error {{cannot find 'nothing' in scope}}
}
}
Expand Down