hamcrest / JavaHamcrest

Java (and original) version of Hamcrest

Home Page:http://hamcrest.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

assertThat(Int::class.java, typeCompatibleWith(Number::class.java)) in kotlin always fails

debdutta-yore opened this issue · comments

assertThat(Int::class.java, typeCompatibleWith(Number::class.java)) in kotlin always fails

But
open class Base
class Extended: Base()
assertThat(Extended::class.java, typeCompatibleWith(Base::class.java)) succeed