Minor: fix typo in file name

This commit is contained in:
Zalim Bashorov
2016-11-17 13:53:40 +03:00
parent e1248f8f0b
commit 8c630954a8
2 changed files with 6 additions and 6 deletions
@@ -0,0 +1,28 @@
// FILE: foo.kt
package foo
@native
class A {
open class B {
fun foo(): String
}
}
class C : A.B()
fun box(): String {
return C().foo()
}
// FILE: bar.js
function A() {
}
A.B = function() {
};
A.B.prototype.foo = function() {
return "OK"
};