mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
253 B
Solidity
8 lines
253 B
Solidity
|
contract C {
|
||
|
/// @notice example of notice
|
||
|
/// @dev example of dev
|
||
|
uint private state;
|
||
|
}
|
||
|
// ----
|
||
|
// Warning: (17-74): Documentation tag on non-public state variables will be disallowed in 0.7.0. You will need to use the @dev tag explicitly.
|