diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-10 10:26:47 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-10 10:27:07 +0100 |
| commit | 4b29b9f229f02940bfebba34ff291027ce6f662c (patch) | |
| tree | 4bc084b042761cb58709d27a40a693ba0a27c8c5 | |
| parent | 137af331b95311f3abfa9fe59e7efc68843f6c37 (diff) | |
chore: Fix function signature.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -rw-r--r-- | test/test_samples/ostream_test.ncpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/test/test_samples/ostream_test.ncpp b/test/test_samples/ostream_test.ncpp index 48e58c8..5f45db4 100644 --- a/test/test_samples/ostream_test.ncpp +++ b/test/test_samples/ostream_test.ncpp @@ -6,16 +6,6 @@ struct iostream return; } - let consume<long>(long& val) - { - return; - } - - let consume<bool>(bool& val) - { - return; - } - let read() { let ch = getchar(); @@ -23,7 +13,7 @@ struct iostream } }; -int main(void) +let main() { let six_seven = 100; let eight_nine = 1; |
