1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-02-13 11:42:18 +00:00
ton/tolk-tester/tests/invalid-typing-2.tolk

10 lines
170 B
Text
Raw Normal View History

fun main() {
var tri: (int, int) = (10, false);
return;
}
/**
@compilation_should_fail
@stderr can not assign `(int, bool)` to variable of type `(int, int)`
*/