46 lines
1,017 B
Text
46 lines
1,017 B
Text
if true { "discarded"; 23 } else { 45 }
|
|
|
|
// @no-errors
|
|
// Here come some type probes!
|
|
// (type of the condition)
|
|
// @type: 3 bool
|
|
//
|
|
// (the discarded expression)
|
|
// @type: 10 string
|
|
//
|
|
// (the "then" clause)
|
|
// @type: 23 f64
|
|
// @type: 26 f64
|
|
//
|
|
// (the "else" clause)
|
|
// @type: 35 f64
|
|
// @type: 38 f64
|
|
//
|
|
// (the overall expression)
|
|
// @type: 0 f64
|
|
//
|
|
// @concrete:
|
|
// | File
|
|
// | IfStatement
|
|
// | ConditionalExpression
|
|
// | If:'"if"'
|
|
// | LiteralExpression
|
|
// | True:'"true"'
|
|
// | Block
|
|
// | LeftBrace:'"{"'
|
|
// | ExpressionStatement
|
|
// | LiteralExpression
|
|
// | String:'"\"discarded\""'
|
|
// | Semicolon:'";"'
|
|
// | ExpressionStatement
|
|
// | LiteralExpression
|
|
// | Number:'"23"'
|
|
// | RightBrace:'"}"'
|
|
// | Else:'"else"'
|
|
// | Block
|
|
// | LeftBrace:'"{"'
|
|
// | ExpressionStatement
|
|
// | LiteralExpression
|
|
// | Number:'"45"'
|
|
// | RightBrace:'"}"'
|
|
//
|