mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 08:31:30 +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();
|
|
}
|
|
}
|