summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0631.cs
blob: 83a8dcd0eae968db1156ed2f93174dda4c42dbe6 (plain)
1
2
3
4
5
6
// CS0631: The parameter modifier `ref' is not valid in this context
// Line: 5

class X {
	public int this [ref int arg] { set {} }
}