Minor: fix typo in file name
This commit is contained in:
@@ -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"
|
||||
};
|
||||
Reference in New Issue
Block a user