a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
23 lines
367 B
C#
23 lines
367 B
C#
// CS1954: The best overloaded collection initalizer method `Data.Add(ref int)' cannot have `ref' or `out' modifier
|
|
// Line: 20
|
|
|
|
using System;
|
|
using System.Collections;
|
|
|
|
class Data : IEnumerable
|
|
{
|
|
public IEnumerator GetEnumerator () { return null; }
|
|
|
|
public void Add (ref int b)
|
|
{
|
|
}
|
|
}
|
|
|
|
public class Test
|
|
{
|
|
static void Main ()
|
|
{
|
|
var c = new Data { 1 };
|
|
}
|
|
}
|