Skip to content
Snippets Groups Projects
Commit a185d54e authored by Carlos Galindo's avatar Carlos Galindo
Browse files

Update tests

parent 5be44997
No related branches found
No related tags found
1 merge request!58Object flow and trees
Pipeline #96 failed
class A {
int xA = 0;
A(int newx) {
xA = newx;
}
public static void main(String[] args) {
......@@ -16,6 +13,8 @@ class A {
class B extends A {
int xB = 5;
B(double valor) {
super((int) valor);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment