You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I guess gccrs parses this as (not < true) > (), where () is an empty tuple. I originally reported this as a parse error because I assumed this code would be totally invalid syntax.
Summary
not<true>();
should actually be written asnot::<true>();
, i.e. a turbofish operator. It seems though that this survives the parsing phase.Reproducer
I tried this code:
Does the code make use of any (1.49) nightly feature ?
Godbolt link
No response
Actual behavior
Expected behavior
GCC Version
b87fd67
The text was updated successfully, but these errors were encountered: