kicad-source/tools/utf8_tests.cpp
2017-07-26 08:29:36 -04:00

15 lines
153 B
C++

#include <utf8.h>
#include <wx/string.h>
int main( int argc, char** argv )
{
UTF8 bozo = "bozo";
wxString s = bozo;
return 0;
}