//SPDX-License-Identifier: MIT pragma solidity ^0.4.18; // These are out of alphabetic order // Solc will alphabetize them, we should restore source-order. contract SimpleOrdered { function theFirst() public pure {} function second() public pure {} function andThird() public pure {} }