mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
The unfixed ones were discovered by fuzzing. I have fixes for most of them in an in-progress PR. One that was already fixed is just a regression test I'm adding.
8 lines
148 B
Swift
8 lines
148 B
Swift
// RUN: %target-swift-ide-test -code-completion -code-completion-token=A -source-filename=%s
|
|
|
|
extension Integer {
|
|
init() {
|
|
self = #^A^#
|
|
}
|
|
}
|