fork download
  1. template<class T, char* p> int X() {
  2. };
  3. char p[] = "Vivisectionist";
  4. int m() {X<int,p>();}
  5.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp: In function ‘int X()’:
prog.cpp:2: warning: no return statement in function returning non-void
prog.cpp: In function ‘int m()’:
prog.cpp:4: warning: control reaches end of non-void function
prog.cpp: In function ‘int X() [with T = int, char* p = ((char*)(& p))]’:
prog.cpp:2: warning: control reaches end of non-void function
/usr/lib/gcc/i686-pc-linux-gnu/4.3.4/../../../crt1.o: In function `_start':
(.text+0x18): undefined reference to `main'
collect2: ld returned 1 exit status
stdout
Standard output is empty