compiler: fix repl chained_fields test (windows)

pull/1846/head
joe-conigliaro 2019-09-04 01:42:40 +10:00 committed by Alexander Medvednikov
parent 5dcfda0600
commit 6921c15b7b
2 changed files with 1 additions and 2 deletions

View File

@ -1822,7 +1822,6 @@ fn (p mut Parser) dot(str_typ string, method_ph int) string {
f := p.first_immutable_field
p.error('cannot modify immutable field `$f.name` (type `$f.parent_fn`)\n' +
'declare the field with `mut:`
struct $f.parent_fn {
mut:
$f.name $f.typ

View File

@ -54,7 +54,7 @@ fn test_the_v_repl() {
assert false
break
}
result := r.output.replace('\r','').replace('>>> ', '').replace('>>>', '').replace('... ', '').all_after('Use Ctrl-C or `exit` to exit\n').replace( wd, '' )
result := r.output.replace('\r','').replace('>>> ', '').replace('>>>', '').replace('... ', '').all_after('Use Ctrl-C or `exit` to exit\n').replace(wd, '' )
assert result == output
if result != output {
println(file)