https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64267
Ivan Lazaric <ivan.lazaric.gcc at gmail dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ivan.lazaric.gcc at gmail dot
com
--- Comment #2 from Ivan Lazaric <ivan.lazaric.gcc at gmail dot com> ---
I have run into this bug in reflection related code
```
namespace NS {
void fn();
}
void fn();
void [: ^^NS :] :: fn() {} // works
void [: ^^:: :] :: fn() {} // error
```
