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*/ {
51
+
// solhint-disable-previous-line no-empty-blocks
52
+
}
53
+
54
+
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*/ {
55
+
// solhint-disable-previous-line no-empty-blocks
56
+
}
57
+
58
+
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*/ {
59
+
// solhint-disable-previous-line no-empty-blocks
60
+
}
61
+
50
62
contract Comments5 /*nice name*/ {
51
63
// solhint-disable-previous-line no-empty-blocks
52
64
}
@@ -223,6 +235,45 @@ contract Comments4 is
223
235
// solhint-disable-previous-line no-empty-blocks
224
236
}
225
237
238
+
contract Comments4a
239
+
is
240
+
Interface1,
241
+
Interface2,
242
+
Interface3,
243
+
Interface4,
244
+
Interface5,
245
+
Interface6 /*why we used Interface6*/ /*where should this go?*/
246
+
layout at 123 /*why we used this layout*/
247
+
{
248
+
// solhint-disable-previous-line no-empty-blocks
249
+
}
250
+
251
+
contract Comments4b
252
+
is
253
+
Interface1,
254
+
Interface2,
255
+
Interface3,
256
+
Interface4,
257
+
Interface5,
258
+
Interface6 /*why we used Interface6*/ /*where should this go?*/
259
+
layout at 123 + 456 /*why we used this layout*/
260
+
{
261
+
// solhint-disable-previous-line no-empty-blocks
262
+
}
263
+
264
+
contract Comments4c
265
+
is
266
+
Interface1,
267
+
Interface2,
268
+
Interface3,
269
+
Interface4,
270
+
Interface5,
271
+
Interface6 /*why we used Interface6*/ /*where should this go?*/
272
+
layout at f(123 + 456) /*why we used this layout*/
0 commit comments