summaryrefslogtreecommitdiffstats
path: root/runtime/syntax/testdir/input/vim_new.vim
blob: 985cfd3c11fa6e712b65bcc61db38e46e8d8dbfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
vim9script

# Vim :new command and class constructors.
class Test
	def new()
	enddef
	def newOther()
	enddef
	def newyetanother()
	enddef
endclass

Test.new()
Test.newOther()
Test.newyetanother()
new
quit