mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
10 lines
210 B
Text
10 lines
210 B
Text
|
fun failAssignPlainNullToVariable() {
|
||
|
var x = null;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
@compilation_should_fail
|
||
|
@stderr can not infer type of `x`, it's always null
|
||
|
@stderr specify its type with `x: <type>` or use `null as <type>`
|
||
|
*/
|