Created
September 15, 2015 07:45
-
-
Save windoze/16957d7aab3f246d4cda to your computer and use it in GitHub Desktop.
Swift 2 compiler bug
This file contains hidden or 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
struct A<T1, T2> { | |
var f:B<T1, T2> | |
var b:B<T2, T1> | |
var v:T1 | |
} | |
struct B<T1, T2> { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Swift compiler in Xcode 7.0 (7A218) seg fault
Code does compile if I remove
var v:T1