Fix test and add special option for spacing around colon in type definitions
This commit is contained in:
@@ -6,8 +6,8 @@ trait Trait {
|
||||
|
||||
class TraitImpl : Trait {
|
||||
|
||||
override fun <A, B : Runnable, E : Map.Entry<A, B>> foo()
|
||||
where B : Cloneable, B : Comparable<B> {
|
||||
override fun <A, B: Runnable, E: Map.Entry<A, B>> foo()
|
||||
where B: Cloneable, B: Comparable<B> {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user