mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
tmp
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
pragma experimental solidity;
|
||||
|
||||
contract C {
|
||||
fallback() external {
|
||||
word x;
|
||||
assembly {
|
||||
mstore(0, 42)
|
||||
return(0, 32)
|
||||
}
|
||||
}
|
||||
}
|
||||
// ====
|
||||
// compileViaYul: true
|
||||
// ----
|
||||
// () -> 42
|
||||
Reference in New Issue
Block a user