C++: Test showing going from a forward class declaration to a class but not back

This commit is contained in:
Jeroen Ketema
2022-06-22 07:35:12 +02:00
parent 40e0356177
commit a8833a0c70
5 changed files with 27 additions and 0 deletions

View File

@@ -33,3 +33,11 @@ public:
myTemplateClass<int> mtc_int;
myTemplateClass<short> mtc_short;
// Class (UserType)
class myClass
{
public:
int myMemberVariable;
};