10 lines
146 B
Text
10 lines
146 B
Text
// Inherited methods cannot be overloaded
|
|
|
|
class Main extends Other {
|
|
void main() {}
|
|
void method(int a) {}
|
|
}
|
|
|
|
class Other {
|
|
void method() {}
|
|
}
|