2025-01-27 07:29:17 +00:00
|
|
|
fun get_incoming_value() { return 3; }
|
|
|
|
|
2024-10-31 07:18:54 +00:00
|
|
|
fun main() {
|
|
|
|
var incoming_ton: int = get_incoming_value().3();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
@compilation_should_fail
|
2025-01-27 07:29:17 +00:00
|
|
|
@stderr type `int` is not indexable
|
2024-10-31 07:18:54 +00:00
|
|
|
*/
|