ce29aac8
1 2 3 4 5 6 7 8 9 10 11 12
interface I { enum Direction { Left, Right } } library L { function f() public pure returns (I.Direction) { return I.Direction.Left; } function g() internal pure returns (I.Direction) { return I.Direction.Left; } }