Details
Description
I am trying Spring Data and Ignite. My repository interface is below
```
@RepositoryConfig(cacheName = "QuoteRequest")
interface QuoteRequestRepository : IgniteRepository<QuoteRequest, Int>
```
The code works for spring-data-commons:1.13.1.RELEASE. But it doesn't work for 2.0.0.RC3. The error message is below
```
Error:(9, 11) Kotlin: Inherited platform declarations clash: The following declarations have the same JVM signature (deleteAll(Ljava/lang/Iterable;)V):
fun deleteAll(p0: (Mutable)Iterable<QuoteRequest!>!): Unit defined in repository.QuoteRequestRepository
fun deleteAll(p0: (Mutable)Iterable<Int!>!): Unit defined in repository.QuoteRequestRepository
```