Skip to content

Commit

Permalink
patch 9.0.1831: Vim9: failing null test
Browse files Browse the repository at this point in the history
Problem:  Vim9: failing null test
Solution: Use required public keyword

closes: #12982

Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Gianmaria Bajo <mg1979.git@gmail.com>
  • Loading branch information
mg979 authored and chrisbra committed Aug 31, 2023
1 parent d7085a0 commit 6ad4a60
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/testdir/test_vim9_class.vim
Original file line number Diff line number Diff line change
Expand Up @@ -1184,7 +1184,7 @@ def Test_class_member()
lines =<< trim END
vim9script
class A
this.val: string
public this.val: string
endclass

def F()
Expand Down Expand Up @@ -1214,7 +1214,7 @@ def Test_class_member()
lines =<< trim END
vim9script
class A
this.val: string
public this.val: string
endclass

var obj: A
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -699,6 +699,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1831,
/**/
1830,
/**/
Expand Down

0 comments on commit 6ad4a60

Please sign in to comment.