[NFC][test] Clean up overlooked dead auxiliary test files after...

...https://github.com/swiftlang/swift/pull/81280.
This commit is contained in:
Anthony Latsis
2025-05-07 16:13:49 +01:00
parent 921d6d8d2c
commit 3cf3d62a5d
6 changed files with 0 additions and 43 deletions

View File

@@ -1,10 +0,0 @@
enum E2 {
case x
case y
case z
}
func fooHelper(_ e: E2) {
switch e {
}
}

View File

@@ -1 +0,0 @@
module Empty {}

View File

@@ -1,8 +0,0 @@
func foo1() {
class Base {}
class Derived : Base {}
var b : Base
b as Derived
undeclared_foo1
}

View File

@@ -1,8 +0,0 @@
func foo1() {
class Base {}
class Derived : Base {}
var b : Base
b as! Derived
undeclared_foo1
}

View File

@@ -1,8 +0,0 @@
func foo2() {
class Base {}
class Derived : Base {}
var b : Base
b as Derived
undeclared_foo2
}

View File

@@ -1,8 +0,0 @@
func foo2() {
class Base {}
class Derived : Base {}
var b : Base
b as! Derived
undeclared_foo2
}