Fix error when boolean combined with ??. First checkin of C3 tester (unfinished)

This commit is contained in:
Christoffer Lerno
2025-02-19 01:02:58 +01:00
parent cbacd64987
commit d9e5926d57
8 changed files with 498 additions and 93 deletions

View File

@@ -362,6 +362,11 @@ fn File SubProcess.stdout(&self)
return file::from_handle(self.stdout_file);
}
fn File SubProcess.stderr(&self)
{
return file::from_handle(self.stderr_file);
}
fn CInt! SubProcess.join(&self) @if(env::WIN32)
{
if (self.stdin_file)