From f8f2153b6b859dee35192f237d292e75c0a4cd76 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 8 Jan 2026 16:56:35 +0100 Subject: chore: Starting writing Nectar implementation, specs in progress. Signed-off-by: Amlal El Mahrouss --- test/test_samples/sample.cc | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 test/test_samples/sample.cc (limited to 'test/test_samples/sample.cc') diff --git a/test/test_samples/sample.cc b/test/test_samples/sample.cc deleted file mode 100644 index 038f487..0000000 --- a/test/test_samples/sample.cc +++ /dev/null @@ -1,24 +0,0 @@ -class ostream -{ - ostream() - { - return void; - } - - ~ostream() - { - return void; - } - - ostream& write(const char* buf, const long sz) - { - return *this; - } -}; - -int main() -{ - ostream* f = new ostream(); - f->write("foo", 3); - return 0; -} -- cgit v1.2.3