replace 'trait' keyword with 'interface' in user-visible messages and code generation tools
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
package test
|
||||
|
||||
public trait WrongNumberOfGenericParameters {
|
||||
public interface WrongNumberOfGenericParameters {
|
||||
public abstract fun o0(): test.WrongNumberOfGenericParameters.One<*>!
|
||||
public abstract fun o2(): test.WrongNumberOfGenericParameters.One<[ERROR : T]>!
|
||||
public abstract fun t1(): test.WrongNumberOfGenericParameters.Two<*, *>!
|
||||
public abstract fun z(): test.WrongNumberOfGenericParameters.Zero!
|
||||
|
||||
public trait One</*0*/ T> {
|
||||
public interface One</*0*/ T> {
|
||||
}
|
||||
|
||||
public trait Two</*0*/ P, /*1*/ Q> {
|
||||
public interface Two</*0*/ P, /*1*/ Q> {
|
||||
}
|
||||
|
||||
public trait Zero {
|
||||
public interface Zero {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user