Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1674.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 657397e14d94e211d0abb3a57dd261124135a40d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs1674.cs: 'int': type used in a using statement must be implicitly convertible to 'System.IDisposable'
// Line: 8

class C
{
    void Method (int arg)
    {
	using (arg)
	{
	}
    }
}