[K/N] Test case for KT-50983

This commit is contained in:
Sergey Bogolepov
2022-04-08 16:26:26 +03:00
committed by Space
parent 0b5b07f6e2
commit 6a8ebeb1bc
4 changed files with 42 additions and 0 deletions
@@ -0,0 +1,16 @@
1 VERSIONINFO
FILEVERSION 5,0,0,1
PRODUCTVERSION 5,0,0,1
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "080904E4"
BEGIN
VALUE "CompanyName", "CompanyName"
VALUE "FileDescription", "Test Application"
VALUE "FileVersion", "1.0"
VALUE "InternalName", "Test"
VALUE "OriginalFilename", "Test.exe"
END
END
END
@@ -0,0 +1,8 @@
/*
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
fun main() {
println("hello")
}