You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
contract Comments4a is Interface1, Interface2, Interface3, Interface4, Interface5, Interface6 /*why we used Interface6*/ layout /*where should this go?*/at 123/*why we used this layout*/ {
52
+
// solhint-disable-previous-line no-empty-blocks
53
+
}
54
+
55
+
contract Comments4b is Interface1, Interface2, Interface3, Interface4, Interface5, Interface6 /*why we used Interface6*/ layout /*where should this go?*/at 123 + 456/*why we used this layout*/ {
56
+
// solhint-disable-previous-line no-empty-blocks
57
+
}
58
+
59
+
contract Comments4c is Interface1, Interface2, Interface3, Interface4, Interface5, Interface6 /*why we used Interface6*/ layout /*where should this go?*/at f(123 + 456)/*why we used this layout*/ {
60
+
// solhint-disable-previous-line no-empty-blocks
61
+
}
62
+
50
63
contract Comments5 /*nice name*/ {
51
64
// solhint-disable-previous-line no-empty-blocks
52
65
}
@@ -223,6 +236,45 @@ contract Comments4 is
223
236
// solhint-disable-previous-line no-empty-blocks
224
237
}
225
238
239
+
contract Comments4a
240
+
is
241
+
Interface1,
242
+
Interface2,
243
+
Interface3,
244
+
Interface4,
245
+
Interface5,
246
+
Interface6 /*why we used Interface6*/ /*where should this go?*/
247
+
layout at 123 /*why we used this layout*/
248
+
{
249
+
// solhint-disable-previous-line no-empty-blocks
250
+
}
251
+
252
+
contract Comments4b
253
+
is
254
+
Interface1,
255
+
Interface2,
256
+
Interface3,
257
+
Interface4,
258
+
Interface5,
259
+
Interface6 /*why we used Interface6*/ /*where should this go?*/
260
+
layout at 123 + 456 /*why we used this layout*/
261
+
{
262
+
// solhint-disable-previous-line no-empty-blocks
263
+
}
264
+
265
+
contract Comments4c
266
+
is
267
+
Interface1,
268
+
Interface2,
269
+
Interface3,
270
+
Interface4,
271
+
Interface5,
272
+
Interface6 /*why we used Interface6*/ /*where should this go?*/
273
+
layout at f(123 + 456) /*why we used this layout*/
0 commit comments