Skip to content

Commit 6ad4a60

Browse files
mg979chrisbra
authored andcommitted
patch 9.0.1831: Vim9: failing null test
Problem: Vim9: failing null test Solution: Use required public keyword closes: #12982 Signed-off-by: Christian Brabandt <[email protected]> Co-authored-by: Gianmaria Bajo <[email protected]>
1 parent d7085a0 commit 6ad4a60

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/testdir/test_vim9_class.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1184,7 +1184,7 @@ def Test_class_member()
11841184
lines =<< trim END
11851185
vim9script
11861186
class A
1187-
this.val: string
1187+
public this.val: string
11881188
endclass
11891189

11901190
def F()
@@ -1214,7 +1214,7 @@ def Test_class_member()
12141214
lines =<< trim END
12151215
vim9script
12161216
class A
1217-
this.val: string
1217+
public this.val: string
12181218
endclass
12191219

12201220
var obj: A

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -699,6 +699,8 @@ static char *(features[]) =
699699

700700
static int included_patches[] =
701701
{ /* Add new patch number below this line */
702+
/**/
703+
1831,
702704
/**/
703705
1830,
704706
/**/

0 commit comments

Comments
 (0)