my odyssey with VS continues...

i've written a simple string class of my own but i get a
compiler fatal error when it tries to compile the first
'friend' function i declare in the class header file.
it says something about 'compiler file msc1.cpp'

Code:
class myString {
... // in class header
friend myString operator+( const char c[], const myString &s );
...
}
thanks