Skip to content

Instantly share code, notes, and snippets.

@cjxgm
Last active August 29, 2015 14:12
Show Gist options
  • Save cjxgm/66c5a9603bbac0e309b4 to your computer and use it in GitHub Desktop.
Save cjxgm/66c5a9603bbac0e309b4 to your computer and use it in GitHub Desktop.
semantic highlighting test code
namespace a
{
template <class U>
struct a
{
template <class T>
static T b() { return T(1); }
};
struct b
{
using a = int;
};
}
int main()
{
return a::a<a::b::a>::b<a::b::a>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment