You are viewing an older revision! See the latest version

Compiler Error 65

Table of Contents

  1. Expected a ";" (E65)

Expected a ";" (E65)

A very common error, likely caused by forgetting a ";" at the end of one of your statements.

Example:

#include "mbed.h"

DigitalOut buzzer(buzzer)         // missing ;

int main() {                      // error actually reported on this line!
   
}

Note that the line number suggested by the error message will likely specify the next statement after the actual error, as this is the first time it will detect something is wrong.


All wikipages