I have code like this:
template struct MyStruct { T aType; U anotherType; }; class IWantToBeFriendsWithMyStruct {
According to this site, the correct syntax would be
class IWantToBeFriendsWithMyStruct { template friend struct MyStruct; }