blob: 5f308638b9cfb2785a485c8f321ce098a47f9ccd [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail212.d(14): Error: function `fail212.S.bar` without `this` cannot be `const`
---
*/
struct S
{
void foo() const
{
}
static void bar() const
{
}
}