mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
7 lines
101 B
Java
7 lines
101 B
Java
package test;
|
|
|
|
class TwoSetters {
|
|
void setSize(String size) { }
|
|
void setSize(int size) { }
|
|
}
|