Created
July 31, 2018 03:48
-
-
Save metopa/66717789a4ca4bcd3bf7790bf69f9c55 to your computer and use it in GitHub Desktop.
GCC <=6 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
template <typename T> | |
struct A { | |
template <typename V> | |
void foo() { } | |
template <typename U> | |
struct B { | |
A* a_; | |
void foo() { return a_->foo<U>(); } | |
}; | |
}; | |
int main() { | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment