2020-09-03 09:39:56 +00:00
|
|
|
==== Source: a ====
|
2018-08-03 17:41:35 +00:00
|
|
|
|
|
|
|
/**This contract is empty*/ contract C {}
|
|
|
|
|
2020-09-03 09:39:56 +00:00
|
|
|
==== Source: b ====
|
2018-08-03 17:41:35 +00:00
|
|
|
|
|
|
|
/**This contract is empty
|
|
|
|
and has a line-breaking comment.*/
|
|
|
|
contract C {}
|
|
|
|
|
2020-09-03 09:39:56 +00:00
|
|
|
==== Source: c ====
|
2018-08-03 17:41:35 +00:00
|
|
|
|
|
|
|
contract C {
|
2020-03-24 22:44:39 +00:00
|
|
|
/** Some comment on state var.*/ uint public state;
|
2018-08-03 17:41:35 +00:00
|
|
|
/** Some comment on Evt.*/ event Evt();
|
|
|
|
/** Some comment on mod.*/ modifier mod() { _; }
|
|
|
|
/** Some comment on fn.*/ function fn() public {}
|
|
|
|
}
|
2019-10-02 20:31:12 +00:00
|
|
|
|
|
|
|
// ----
|