Some checks failed
CI / build-test-release (push) Failing after 5m36s
Canonical LGPL-3.0-only text, GPL-3.0 companion, SPDX headers on all first-party sources, MIT for examples/. Vendored lib/ untouched. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
11 lines
311 B
C++
11 lines
311 B
C++
//SPDX-License-Identifier: MIT
|
|
//SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
|
|
|
|
// Single-file test: no project.cpp needed. The folder name "Smoke" becomes
|
|
// the test name. Exit 0 = pass, anything else = fail, exit 77 = skipped.
|
|
import std;
|
|
|
|
int main() {
|
|
if (1 + 1 != 2) return 1;
|
|
return 0;
|
|
}
|