@format did not work correctly with macros #2341.

This commit is contained in:
Christoffer Lerno
2025-07-28 10:38:11 +02:00
parent a21e641748
commit 4977bd1d78
3 changed files with 30 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
import std;
module abort_test;
fn int main()
{
int n;
abort("%d", n);
}