浏览代码

fixed issue #373

Nicolas Cannasse 14 年之前
父节点
当前提交
3f1c36055b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      type.ml

+ 1 - 1
type.ml

@@ -336,7 +336,7 @@ let s_kind = function
 		| MethMacro -> "macro method"
 
 let rec is_parent csup c =
-	if c == csup then
+	if c == csup || List.exists (fun (i,_) -> i == csup) c.cl_implements then
 		true
 	else match c.cl_super with
 		| None -> false