#include <iostream>
using namespace std;
struct State
{
	State(string s) { }
};

int main() {
	State s = "a";
}