Attaching symbols from a class

lets say I have a symbol in my library exported for AS class name content_mc

var content_clip:MovieClip = new content_mc();
addChild(content_clip);
content_clip.x = 200;

why is it that this works on a frame and not in a class file?