Avatar
@swift-6.0.3 test import Testing @Suite struct A: Error { @test func f() throws { #expect(throws: Never.self) { throw A() } } }
7:09 AM
@swift-5.10.1 struct A: Error {} let a = A() print(a as? Never)