mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
162 B
Solidity
15 lines
162 B
Solidity
pragma experimental solidity;
|
|
|
|
class T: K {
|
|
function new() -> T;
|
|
}
|
|
|
|
contract C {
|
|
fallback() external {
|
|
let k = K.new();
|
|
}
|
|
}
|
|
|
|
// ----
|
|
// () ->
|