Quick actions

cmd+k|ctrl+k

Navigation

Languages

C++2a dependent type template

Snippet info

Language

Cpp

Visibility

public

Author

740243525

Created

2020-02-11T14:56:16Z

Updated

2020-02-11T14:56:16Z

#include <iostream>
template<class T, typename T::type n=0> class X;
using namespace std;

int main() {
    cout << "Hello World!";
    return 0;
}
INFO