Trivial isoltest updates: missing // ---- at the end

This commit is contained in:
Alex Beregszaszi
2021-04-20 17:38:29 +02:00
committed by Kamil Śliwak
parent 84c05d35f3
commit 1be07c2b36
613 changed files with 613 additions and 0 deletions
@@ -1,3 +1,4 @@
contract c {
event e(uint indexed a, bytes3 indexed b, bool indexed c, uint indexed d) anonymous;
}
// ----
@@ -5,3 +5,4 @@ contract C {
emit e({b: "abc", a: 8});
}
}
// ----
@@ -5,3 +5,4 @@ contract C is A {
emit A.e({b: "abc", a: 8});
}
}
// ----
@@ -4,3 +4,4 @@ contract C {
emit e();
}
}
// ----
@@ -4,3 +4,4 @@ contract C {
emit Test(this.f);
}
}
// ----
@@ -2,3 +2,4 @@ contract TestIt {
event A();
event A(uint i);
}
// ----
@@ -2,3 +2,4 @@ contract test {
event A(uint);
event A(bytes);
}
// ----
@@ -2,3 +2,4 @@ contract test {
event A(uint);
event A(uint, uint);
}
// ----
@@ -4,3 +4,4 @@ contract A {
contract B is A {
event X(uint);
}
// ----
@@ -2,3 +2,4 @@ contract c {
event e1(uint a, uint e1, uint e2);
event e2(uint a, uint e1, uint e2);
}
// ----
@@ -2,3 +2,4 @@ contract A { event X(uint); }
contract B is A {}
contract C is A {}
contract D is B, C {}
// ----