답안 #3408

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
3408 2013-08-31T05:34:07 Z blmarket Ancient symbol (kriii1_A) C++
컴파일 오류
0 ms 0 KB
auto a = [&](int b) : int {
  return b;
}

int main(void) {
  a(5);
}

Compilation message

A.cpp:1:1: warning: 'auto' will change meaning in C++0x; please remove it [-Wc++0x-compat]
A.cpp:1:6: error: 'a' does not name a type
A.cpp: In function 'int main()':
A.cpp:6:6: error: 'a' was not declared in this scope