Created
October 7, 2016 13:59
-
-
Save NocturnDragon/202b754d03d1f3c7154bc7596f97192d to your computer and use it in GitHub Desktop.
Cl Internal Compiler Error
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
// Command line a simple | |
// cl ClCrash.cpp | |
struct foo | |
{ | |
float x; | |
float y; | |
__declspec(property(get = get_x)) foo xx; | |
inline foo get_xx() const { return{ 0 }; } | |
}; | |
struct bar | |
{ | |
foo x; | |
foo y; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment