// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; import {Owned} from "../../../auth/Owned.sol"; contract MockOwned is Owned(msg.sender) { bool public flag; function updateFlag() public virtual onlyOwner { flag = true; } }