Last active
November 12, 2017 19:42
-
-
Save fcanas/ccb3ff498fa5277458670bc2f311d30e to your computer and use it in GitHub Desktop.
cyclic metadata dependency detected, aborting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class C<T> { | |
enum E { | |
case c(T) | |
} | |
var e: E? | |
} | |
let o = C<Int>() // Crash : cyclic metadata dependency detected, aborting |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class C<T> { | |
indirect enum E { | |
case c(T) | |
} | |
var e: E? | |
} | |
let o = C<Int>() // :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment