Make visibility optional, but it has to be consistent.

This commit is contained in:
chriseth
2020-07-07 12:16:18 +02:00
parent 479d7a059f
commit 5959d442cb
13 changed files with 78 additions and 15 deletions
@@ -0,0 +1,6 @@
abstract contract C {
constructor() {}
}
contract D is C {
constructor() { }
}