diff --git a/lab1/Generics/SetGeneric.cs b/lab1/Generics/SetGeneric.cs index 5348a03..5da02e3 100644 --- a/lab1/Generics/SetGeneric.cs +++ b/lab1/Generics/SetGeneric.cs @@ -1,6 +1,6 @@ namespace ElectricLocomotive; -public class SetGeneric where T : class where U : struct +public class SetGeneric where T : class { private readonly T?[] _places;