浏览代码

Fix comment in test (#4569)

Co-authored-by: Josh L <josh11b@users.noreply.github.com>
josh11b 1 年之前
父节点
当前提交
e42b377cf6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      toolchain/check/testdata/impl/no_prelude/self_in_class.carbon

+ 1 - 1
toolchain/check/testdata/impl/no_prelude/self_in_class.carbon

@@ -16,7 +16,7 @@ class C {}
 
 class A {
   impl C as DefaultConstructible {
-    // `Self` here refers to `i32`, not `A`.
+    // `Self` here refers to `C`, not `A`.
     // TODO: Revisit this once #3714 is resolved.
     fn Make() -> Self { return {}; }
   }