Skip to content
Snippets Groups Projects
ContextOutOfBoundsTest.cpp 222 B
Newer Older
  • Learn to ignore specific revisions
  • // SPDX-License-Identifier: LGPL-3.0-or-later
    // Copyright © 2022 Florian Fischer
    // Infinite recursion should run out of stack space and hit the guard page
    static void recur() { recur(); }
    
    void emperTest() { recur(); }