mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
262 B
Swift
10 lines
262 B
Swift
// RUN: %batch-code-completion -enable-experimental-feature NonexhaustiveAttribute
|
|
|
|
// REQUIRES: swift_feature_NonexhaustiveAttribute
|
|
|
|
// NONEXHAUSTIVE-DAG: Keyword/None: warn; name=warn
|
|
|
|
@nonexhaustive(#^NONEXHAUSTIVE^#)
|
|
public enum E {
|
|
}
|