Code has been added to clipboard!

Solidity Inheritance Example 5

Example
// This is not going to compile

pragma solidity ^0.4.0;

contract Cont1 {}
contract Cont2 is Cont1 {}
contract Cont3 is Cont2, Cont1 {}