#include <iostream>
using namespace std;

class IFoo
{
public:
   static const std::string txt("abc"); //geht nicht
   virtual int bar() = 0;
};

int main() {
	// your code goes here
	return 0;
}