import Testing @Suite struct A: Error { @test func f() throws { #expect(throws: Never.self) { throw A() } } }
struct A: Error {} let a = A() print(a as? Never)