I don't know about compilers that learn, by themselves, but I have seen their developers learn and include detection for typical error patterns and their likely correction.
For example the Clang has:
- error recovery by inferring what you meant (when possible), suggesting it to you, and continue parsing as-if it was what you had done
- a number of warnings for likely errors
for ( ); followed by an indented statement for example
Also, it includes a kind-aware typo-correction which is really quite amazing. For example, the typo-correction.cpp file in the test suite shows:
struct BaseType { };
struct Derived : public BaseType { // expected-note\
{{base class 'BaseType' specified here}}
static int base_type; // expected-note {{'base_type' declared here}}
Derived() : basetype() {} // expected-error\
{{initializer 'basetype' does not name a non-static\
data member or base class; did you mean the base \
class 'BaseType'?}}
};
Even though base_type is closer (distance-wise) it is not a base class nor an attribute so is not taken into account.
The thing is, you are most likely to do the same errors than others, therefore the community as a whole is able to learn about itself and sharpen its tools.
Anyways, not a case of a compiler learning on its own perhaps, but you may sometimes wonder if it's sentient!