Skip to content

Instantly share code, notes, and snippets.

@NocturnDragon
Created October 7, 2016 13:59
Show Gist options
  • Save NocturnDragon/202b754d03d1f3c7154bc7596f97192d to your computer and use it in GitHub Desktop.
Save NocturnDragon/202b754d03d1f3c7154bc7596f97192d to your computer and use it in GitHub Desktop.
Cl Internal Compiler Error
// 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