test_interface_02.sol 256 B

12345678
  1. interface foo {
  2. function bar() private;
  3. }
  4. // ---- Expect: diagnostics ----
  5. // error: 3:13-35: function marked 'virtual' cannot also be 'private'
  6. // error: 3:13-35: functions must be declared 'external' in an interface