1 // REQUIRED_ARGS: -de 2 /* 3 TEST_OUTPUT: 4 --- 5 fail_compilation/test15897.d(18): Deprecation: test15897.Animal.create is not visible from class Cat 6 --- 7 */ 8 module test15897; 9 import imports.test15897; 10 11 class Animal 12 { create()13 private void create() {} 14 } 15 foo(Cat cat)16void foo(Cat cat) 17 { 18 cat.create(); 19 } 20