solidity/test/libsolidity/syntaxTests/inlineAssembly/assignment_from_library.sol

12 lines
109 B
Solidity
Raw Normal View History

library L {
}
contract C {
function f() public pure {
assembly {
let x := L
}
}
}
// ----