[Bug c++/30946] New: classes and structs are interchangeable?
The following will compile with no problem. ___ class character { //bah }; struct character enemy; ___ So will ___ struct character { //bah }; class character enemy; __
The following will compile with no problem. ___ class character { //bah }; struct character enemy; ___ So will ___ struct character { //bah }; class character enemy; __