Files
swift-mirror/test/ClangImporter/enum-new.swift
Nishith Shah 8e2e625543 [Diagnostics] Use imperative msg for protocol conformance & switch-case fixits
This commit changes fixit messages from a question/suggestion to an
imperative message for protocol conformances and switch-case. Addresses
https://github.com/apple/swift/issues/67510.
2023-08-13 22:34:26 -07:00

24 lines
1021 B
Swift

// RUN: %target-swift-frontend -typecheck %s -import-objc-header %S/Inputs/enum-new.h -verify -enable-nonfrozen-enum-exhaustivity-diagnostics
// REQUIRES: OS=macosx
_ = .Red as Color
_ = .Cyan as MoreColor
func test() {
switch getColor() { // expected-warning {{switch covers known cases, but 'Color' may have additional unknown values}} expected-note{{handle unknown values using "@unknown default"}}
case .Red, .Blue, .Green: break
}
switch getMoreColor() { // expected-warning {{switch covers known cases, but 'MoreColor' may have additional unknown values}} expected-note{{handle unknown values using "@unknown default"}}
case .Yellow, .Magenta, .Black, .Cyan: break
}
switch getColorOptions() { // expected-error {{switch must be exhaustive}} expected-note{{add a default clause}}
case ColorOptions.Pastel: break
case ColorOptions.Swift: break
}
switch 5 as Int16 { // expected-error {{'switch' statement body must have at least one 'case' or 'default' block; add a default case}}
}
}