2018-04-17 09:39:40 +00:00
|
|
|
contract C {
|
|
|
|
constructor() internal {}
|
|
|
|
}
|
|
|
|
contract D {
|
|
|
|
function f() public { C c = new C(); c; }
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// TypeError 9054: (84-89): Contract with internal constructor cannot be created directly.
|