Skip to content

Instantly share code, notes, and snippets.

@pofat
Created July 24, 2022 21:36
Show Gist options
  • Save pofat/e641572f812dc004057a1a0a3c3f716a to your computer and use it in GitHub Desktop.
Save pofat/e641572f812dc004057a1a0a3c3f716a to your computer and use it in GitHub Desktop.
Code that crash Swift compiler (before 5.8)
protocol P {
associatedtype A
associatedtype B
}
protocol Q: P {}
extension Q where A == Int {
typealias B = Int
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment