スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2451: 条件式の型 'void' が間違っています。<ソース名>: note: void 型の式は他の型へ変換できません。
ソース(バグ有り):
#include <stdio.h> void test_func() { } int main() { |
ソース(修正済み):
#include <stdio.h> int test_func() { return 1; } int main() { |
スポンサード リンク