solidity/test/libsolidity/natspecJSON/public_state_variable_struct_repeated.sol

14 lines
277 B
Solidity

contract Bank {
struct Coin {
string obverseGraphicURL;
string reverseGraphicURL;
}
/// @notice Get the n-th coin I own
/// @return obverseGraphicURL Front pic
/// @return obverseGraphicURL Front pic
Coin[] public coinStack;
}
// ----