Open
Description
Description
I'm following the Scrumdinger tutorial, made a small error and got the error message:
[...]/DetailView.swift:8:25 Failed to produce diagnostic for expression; please submit a bug report (https://swift.org/contributing/#reporting-bugs)
Steps to reproduce
Try to compile the tutorial project as of having just added the "Edit" sheet, where the file DetailView.swift is:
import SwiftUI
struct DetailView: View {
let scrum: DailyScrum
@State private var isPresentingEditView = false
var body: some View {
List {
Section(header: Text("Meeting Info")) {
NavigationLink(destination: MeetingView()) {
Label("Start Meeting", systemImage: "timer")
.font(.headline)
.foregroundColor(.accentColor)
}
HStack {
Label("Length", systemImage: "clock")
Spacer()
Text("\(scrum.lengthInMinutes) minutes")
}
.accessibilityElement(children: .combine)
HStack {
Label("Theme", systemImage: "paintpalette")
Spacer()
Text(scrum.theme.name)
.padding(4)
.foregroundColor(scrum.theme.accentColor)
.background(scrum.theme.mainColor)
.cornerRadius(4)
}
.accessibilityElement(children: .combine)
}
Section(header: Text("Attendees")) {
ForEach(scrum.attendees) { attendee in
Label(attendee.name, systemImage: "person")
}
}
}
.navigationTitle(scrum.title)
.toolbar {
Button("Edit") {
isPresentingEditView = true
}
}
.sheet(isPresented: $isPresentingEditView) {
NavigationStack {
DetailEditView()
.navigationTitle(scrum.title)
.toolbar {
ToolbarItem(placement: .cancellationAction) {
Button("Cancel") {
isPresentingEditView = false
}
}
ToolbarItem(placement: .confirmationAction) {
isPresentingEditView = false
}
}
}
}
}
}
struct DetailView_Previews: PreviewProvider {
static var previews: some View {
NavigationStack {
DetailView(scrum: DailyScrum.sampleData[0])
}
}
}
The error is in line 56 (inside the second ToolbarAction
), where the expression should have been wrapped in a Button
.
Expected behavior
An error message explaining the actual problem (that the closure should return a Content
value).
Environment
- Swift compiler version info:
swift-driver version: 1.75.2 Apple Swift version 5.8 (swiftlang-5.8.0.124.2 clang-1403.0.22.11.100) Target: arm64-apple-macosx13.0
- Xcode version info:
Xcode 14.3, Build version 14E222b
- Deployment target:
iOS 16.4
Metadata
Metadata
Assignees
Labels
A deviation from expected or documented behavior. Also: expected but undesirable behavior.The Swift compiler itselfBug: Diagnostics Quality of ImplementationBug → internal error: Failed to produce diagnostic for expressionFeature → generics: generic constraintsFeature: generic declarations and typesFeature: Result buildersArea → compiler: Semantic analysis