summaryrefslogtreecommitdiff
path: root/test/files/script/t1015.bat
blob: 7475313d7e636ff9aa9a003bbef8804fc4c04fe4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
::#!
:: t1015 - <description>.

@echo off
call scala -nocompdaemon %0 %*
goto :eof
::!#

case class Test(one : Int, two : Int)
object Test{
 def apply(one : Int): Test = Test(one, 2);
}