Fix on rethrow + macros.

This commit is contained in:
Christoffer Lerno
2023-06-27 20:40:46 +02:00
parent 550b1f23ec
commit 57c8b5fc75
10 changed files with 140 additions and 46 deletions

View File

@@ -11,7 +11,7 @@ fn void! test_writing()
ByteReader r;
String test_str = "2134";
r.init(test_str);
s.read_from(&&r.as_stream())!;
s.read_from(r.as_stream())!;
String o = foo.str();
assert(o == "hello-what?2134");
}