blob: 90abccc436fb97770379f34e3885dd480fec9deb [file] [log] [blame]
class Class {
static const c = 42;
static const e = 123;
static const int d = 87;
static set c(_) {}
static void set d(int value) {}
void set e(_) {}
}
const a = 42;
const int b = 87;
set a(_) {}
void set b(int value) {}