summaryrefslogtreecommitdiff
path: root/tests/language-feature
diff options
context:
space:
mode:
Diffstat (limited to 'tests/language-feature')
-rw-r--r--tests/language-feature/interfaces/argument-direction-mismatch.slang4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/language-feature/interfaces/argument-direction-mismatch.slang b/tests/language-feature/interfaces/argument-direction-mismatch.slang
index cf9d99fdd..e02715ea0 100644
--- a/tests/language-feature/interfaces/argument-direction-mismatch.slang
+++ b/tests/language-feature/interfaces/argument-direction-mismatch.slang
@@ -6,11 +6,11 @@ public interface ITest {
};
public struct TestImpl : ITest {
- // CHECK: ([[# @LINE + 1]]): error 38105
+ // CHECK: ([[# @LINE + 1]]): error 38108
public void testIn(out int a) {
a = 5;
}
- // CHECK: ([[# @LINE + 1]]): error 38105
+ // CHECK: ([[# @LINE + 1]]): error 38108
public void testOut(int b) {
b = 6;
}