v2 / vlib / v / debug / tests / comptime_smartcast.expect
13 lines · 12 sloc · 271 bytes · 5310c102a6b62144bc08274884ca3e681ceb1296
Raw
1#!/usr/bin/env expect
2source "common.tcl"
3
4expect "Break on * comptime_smartcast in ${test_file}:3\r\n"
5expect "${test_file}:3 vdbg> "
6send "p v\n"
7expect "v = 1 (int)"
8send "c\n"
9expect "${test_file}:5 vdbg> "
10send "p v\n"
11expect "v = true (bool)"
12send "q\n"
13expect eof
14