From 3b4a9cc42639b63f77d067ec221dfcf216fdc4c4 Mon Sep 17 00:00:00 2001 From: Olivier Blanvillain Date: Fri, 24 Sep 2021 16:51:58 +0200 Subject: [PATCH] Fix i11631.scala: rename Nul to Nulll --- tests/pos/i11631.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/pos/i11631.scala b/tests/pos/i11631.scala index 96cd46578d76..ecd6f267dafc 100644 --- a/tests/pos/i11631.scala +++ b/tests/pos/i11631.scala @@ -1,9 +1,9 @@ trait MyTrait: def a(): String = "" -class Nul +class Nulll -extension [T](x: T | Nul) inline def nnn: x.type & T = ??? +extension [T](x: T | Nulll) inline def nnn: x.type & T = ??? class MyClass: var myTrait: MyTrait|Null = null