Add blank line to make it consistency

This commit is contained in:
Younghoon-Lee 2022-01-28 01:11:35 +09:00
parent 597426bd1c
commit 95f9289f2c

View File

@ -281,6 +281,7 @@ Yes:
// ...
}
contract B is Owned {
// ...
}
@ -846,15 +847,20 @@ Yes:
constructor(uint) {
}
}
contract C {
constructor(uint, uint) {
}
}
contract D {
constructor(uint) {
}
}
contract A is B, C, D {
uint x;