inheritance-base-not-interface.azsl 162 B

12345678910
  1. struct s1 { };
  2. interface i1 { };
  3. class child : i1, s1
  4. {
  5. };
  6. // Semantic Error 17: line 5::0 'base /s1 is not an interface or class (it is a Struct)'
  7. // #EC 17