Files
swift-mirror/validation-test/compiler_crashers_fixed/issue-44937.swift
2025-12-10 18:49:41 -05:00

12 lines
156 B
Swift

// RUN: not %target-swift-frontend -typecheck %s
struct X: ExpressibleByStringLiteral {
let i: Int
}
enum E: X {
case fooBar = "A"
}
print(E.fooBar)