blob: e50f3c2bf876562045a702f2f8775a2d31dbcef1 [file] [log] [blame]
// Build don't link:
// Origin: sk@gluit.de
// Special g++ Options:
#include <typeinfo>
int main ()
{
typeid(char*);
int len = 1;
char carr[len];
typeid(typeof(carr)); // ERROR - type has variable size
typeid(carr); // ERROR - type has variable size
}