PatternLanguage icon indicating copy to clipboard operation
PatternLanguage copied to clipboard

Null-Pointer found in AST with recursive using declaration

Open brecert opened this issue 2 years ago • 0 comments

The following snippet will cause Invalid parser result: Null-Pointer found in AST.

using P<auto T> = P<T>;

The following snippet will cause ImHex to crash with SIGSEGV.

using P<T> = P<T>;

brecert avatar May 30 '23 15:05 brecert