So I'm trying to switch a Teensy 3.2 project over to using FastLED and

So I’m trying to switch a Teensy 3.2 project over to using FastLED and I’m getting a strange error. It would seem that as soon as I import the library my code fails to compile if I try to define a function.

This extremely basic code does not compile. It says the function test was not declared:

#include<FastLED.h>

void setup() {
test();
}

void loop() {

}

void test() {
return;
}

This is a known bug with the Arduino IDE - try upgrading to 1.6.8 or later - and if it still happens, you need to declare the function test before it is used (until they get it fixed)