mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 15:51:59 +00:00
10 lines
184 B
Java
Vendored
10 lines
184 B
Java
Vendored
package test;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class AllBoundsInWhen {
|
|
public <T extends Serializable> void foo() {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
}
|