Files
c3c/test/test_suite/expressions/always_rethrow_in_assert.c3
Christoffer Lerno 4fbb42833e - Crash when creating $Type* where $Type is an optional type #2848
- Crashes when using `io::EOF~!` in various unhandled places. #2848
2026-01-27 13:32:08 +01:00

9 lines
200 B
Plaintext

import std;
macro @test(#e1, #e2)
{
assert(#e1 == #e2, "", io::EOF~!); // #error: This value is always rethrown and doesn't have a definite type. This is not valid
}
fn usz foo()
{
@test("", "");
}