Ignore maximal munch issue in type spelling in clang 7

This commit is contained in:
Jonathan Müller 2018-10-25 22:08:57 +02:00
commit 34fd07b1b4

View file

@ -28,8 +28,8 @@ using c = void;
template <class D = decltype(1 + 3)>
using d = void;
// maximal munch here
template <typename E = a<void>>
// potential maximal munch here, but ignore it
template <typename E = a<void> >
using e = void;
)";