saqut-compiler/tests/golden/string/ordering_error.sqt

11 lines
301 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Negatif test: string sıralama operatörleri derleme hatası vermeli.
// Bu dosya DERLENMEMELI — TypeChecker E003 üretmeli.
// < > <= >= operatörlerinin her biri string ile bloklanır.
int main() {
string a = "merhaba";
string b = "dunya";
if (a < b) { return 1; }
return 0;
}