[test] Update tests to include location string.

This commit is contained in:
Alexander Arlt
2022-04-01 23:41:18 -05:00
parent d4c02f2270
commit 0783ad9000
2684 changed files with 5877 additions and 5877 deletions
@@ -2,4 +2,4 @@ contract C {}
interface I is C {}
// ----
// TypeError 6536: (29-30): Interfaces can only inherit from other interfaces.
// TypeError 6536: (29-30='C'): Interfaces can only inherit from other interfaces.
@@ -24,6 +24,6 @@ interface Sub is SuperA, SuperB {
// ----
// TypeError 4327: (572-616): Function needs to specify overridden contracts "SuperA" and "SuperB".
// TypeError 4327: (647-655): Function needs to specify overridden contracts "SuperA" and "SuperB".
// TypeError 4327: (705-721): Function needs to specify overridden contract "SuperB".
// TypeError 4327: (771-787): Function needs to specify overridden contract "SuperA".
// TypeError 4327: (647-655='override'): Function needs to specify overridden contracts "SuperA" and "SuperB".
// TypeError 4327: (705-721='override(SuperA)'): Function needs to specify overridden contract "SuperB".
// TypeError 4327: (771-787='override(SuperB)'): Function needs to specify overridden contract "SuperA".