mirror of
https://github.com/status-im/nim-ethers.git
synced 2025-01-13 00:54:38 +00:00
11 lines
206 B
Solidity
11 lines
206 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.0;
|
|
|
|
contract TestEnums {
|
|
enum SomeEnum { One, Two }
|
|
|
|
function returnValue(SomeEnum value) external pure returns (SomeEnum) {
|
|
return value;
|
|
}
|
|
}
|