Elaborated type specifiers
I see the latest studio express still accepts
t[code]emplate <typename T>
class X {
friend class T;
};
struct Z{};
int main() {
X<Z> x;
}
[/code]
Which is ill-formed according to 7.1.5.3 p2. Is this going to change, or is the standard being ammended?
I ask because these issues cause porting problems.
Cheers, Ian.

