@@ -636,6 +636,125 @@ struct CannotCopy
636
636
public int Second { get; set; }
637
637
}
638
638
639
+ internal sealed class NonCopyableAttribute : System.Attribute { }
640
+ " ;
641
+
642
+ await new VerifyCS . Test
643
+ {
644
+ TestCode = source ,
645
+ LanguageVersion = Microsoft . CodeAnalysis . CSharp . LanguageVersion . CSharp8 ,
646
+ } . RunAsync ( ) ;
647
+ }
648
+
649
+ [ Fact ]
650
+ public async Task AllowCustomForeachEnumerator ( )
651
+ {
652
+ var source = @"
653
+ using System.Runtime.InteropServices;
654
+
655
+ class C
656
+ {
657
+ void Method()
658
+ {
659
+ var cannotCopy = new CannotCopy();
660
+ foreach (var obj in cannotCopy)
661
+ {
662
+ }
663
+ }
664
+ }
665
+
666
+ [NonCopyable]
667
+ struct CannotCopy
668
+ {
669
+ public Enumerator GetEnumerator() => throw null;
670
+
671
+ public struct Enumerator
672
+ {
673
+ public object Current => throw null;
674
+ public bool MoveNext() => throw null;
675
+ }
676
+ }
677
+
678
+ internal sealed class NonCopyableAttribute : System.Attribute { }
679
+ " ;
680
+
681
+ await new VerifyCS . Test
682
+ {
683
+ TestCode = source ,
684
+ LanguageVersion = Microsoft . CodeAnalysis . CSharp . LanguageVersion . CSharp8 ,
685
+ } . RunAsync ( ) ;
686
+ }
687
+
688
+ [ Fact ]
689
+ public async Task AllowCustomForeachEnumeratorDisposableObject ( )
690
+ {
691
+ var source = @"
692
+ using System;
693
+ using System.Runtime.InteropServices;
694
+
695
+ class C
696
+ {
697
+ void Method()
698
+ {
699
+ using var cannotCopy = new CannotCopy();
700
+ foreach (var obj in cannotCopy)
701
+ {
702
+ }
703
+ }
704
+ }
705
+
706
+ [NonCopyable]
707
+ struct CannotCopy : IDisposable
708
+ {
709
+ public void Dispose() => throw null;
710
+ public Enumerator GetEnumerator() => throw null;
711
+
712
+ public struct Enumerator
713
+ {
714
+ public object Current => throw null;
715
+ public bool MoveNext() => throw null;
716
+ }
717
+ }
718
+
719
+ internal sealed class NonCopyableAttribute : System.Attribute { }
720
+ " ;
721
+
722
+ await new VerifyCS . Test
723
+ {
724
+ TestCode = source ,
725
+ LanguageVersion = Microsoft . CodeAnalysis . CSharp . LanguageVersion . CSharp8 ,
726
+ } . RunAsync ( ) ;
727
+ }
728
+
729
+ [ Fact ]
730
+ public async Task AllowCustomForeachReadonlyEnumerator ( )
731
+ {
732
+ var source = @"
733
+ using System.Runtime.InteropServices;
734
+
735
+ class C
736
+ {
737
+ void Method()
738
+ {
739
+ var cannotCopy = new CannotCopy();
740
+ foreach (var obj in cannotCopy)
741
+ {
742
+ }
743
+ }
744
+ }
745
+
746
+ [NonCopyable]
747
+ struct CannotCopy
748
+ {
749
+ public readonly Enumerator GetEnumerator() => throw null;
750
+
751
+ public struct Enumerator
752
+ {
753
+ public object Current => throw null;
754
+ public bool MoveNext() => throw null;
755
+ }
756
+ }
757
+
639
758
internal sealed class NonCopyableAttribute : System.Attribute { }
640
759
" ;
641
760
0 commit comments