mirror of
https://github.com/github/codeql.git
synced 2026-04-16 12:34:02 +02:00
15 lines
272 B
Java
15 lines
272 B
Java
class Rectangle
|
|
{
|
|
private int w = 10, h = 10;
|
|
public int getArea() {
|
|
return w * h;
|
|
}
|
|
}
|
|
|
|
class Triangle extends Rectangle
|
|
{
|
|
@Override // Annotation of an overriding method
|
|
public int getArea() {
|
|
return super.getArea() / 2;
|
|
}
|
|
} |