I created the following file template in Clion, but when I tried to create a file it said "Unable to parse template". What could be wrong?
#include <bits/stdc++.h>
using namespace std;
#define endl "\n"
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
return 0;
}