blob: 3ab08babeb22f328b7ed6018e5e8318c2e0976b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// CS1510: A ref or out argument must be an assignable variable
// Line: 9
class C
{
public static void Main ()
{
const char c = 'a';
Foo (ref c);
}
static void Foo(ref char i)
{
}
}
|