I am trying to select 3 point leveling. I am using the newest code from Github and I copied it manually. I have successfully compiled using the default config files, so things are generally ok.
I get this compile error:

There do not seem to be any "sanity check" errors. I had some errors about not being able to reach probe points due to offsets, but I fixed those and I am left with this now.
These are the defines from Configuration.h
#define AUTO_BED_LEVELING_3POINT
#define ENABLE_LEVELING_AFTER_G28
These are the defines from Configuration_adv.h
#if EITHER(AUTO_BED_LEVELING_3POINT, AUTO_BED_LEVELING_UBL)
#define PROBE_PT_1_X 15
#define PROBE_PT_1_Y 290
#define PROBE_PT_2_X 15
#define PROBE_PT_2_Y 65
#define PROBE_PT_3_X 280
#define PROBE_PT_3_Y 65
Config files attached
I can reconfirm that this error goes away and it compiles fine if AUTO_BED_LEVELING_3POINT is undefined.
My problems are usually stupid, but I don't see how I can deal with this. Is it something in the configuration?