﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0104</ErrorName>
  <Examples>
    <string>// cs0104.cs: Ambiguous type reference
// Line: 16
namespace A {
	class X {
	}
}

namespace B {
	class X {
	}
}

namespace C {
	using A;
	using B;
	class D : X {

	static void Main () {}
	}
}
</string>
  </Examples>
</ErrorDocumentation>