<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1674</ErrorName>
  <Examples>
    <string>// cs1674-2.cs: `object': type used in a using statement must be implicitly convertible to `System.IDisposable'
// Line: 10

using System;

class C
{
	void Method (IDisposable i)
	{
		using (object o = i)
		{
		}
    }
}</string>
    <string>// 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)
	{
	}
    }
}</string>
  </Examples>
</ErrorDocumentation>