From @gkinsman on March 26, 2015 6:6
Teapot isn't able to find implementations of interfaces when the implementation implements multiple interfaces.
interface IBar<T> { }
interface IBaz<T> { }
class Foo<T> : IBar<T>, IBaz<T> { }
Navigating from usages of IBar or IBaz won't find either implementation.
Copied from original issue: DevRust/Teapot.Public#1