Fixes #1224. Don't expect not identical tear-offs to be identical
diff --git a/LanguageFeatures/Constructor-tear-offs/tearing_off_from_typedef_A03_t07.dart b/LanguageFeatures/Constructor-tear-offs/tearing_off_from_typedef_A03_t07.dart
index 325b08e..67873f6 100644
--- a/LanguageFeatures/Constructor-tear-offs/tearing_off_from_typedef_A03_t07.dart
+++ b/LanguageFeatures/Constructor-tear-offs/tearing_off_from_typedef_A03_t07.dart
@@ -12,6 +12,7 @@
 ///
 /// @author iarkh@unipro.ru
 /// @issue 47267
+/// @issue 47462
 
 // SharedOptions=--enable-experiment=constructor-tearoffs
 
@@ -25,7 +26,7 @@
   var v3 = (MyList.filled)<num>;
 
   Expect.identical(v1, v2);
-  Expect.identical(v1, v3);
+  Expect.isFalse(identical(v1, v3));
 
   const v4 = MyList<int>.filled;
   const v5 = MyList<int>.filled;