summaryrefslogtreecommitdiff
path: root/Zend/tests/enum/non-backed-enum-with-int-value.phpt
blob: 4932e63d180b9b052d56b97d2a8ede2cfd8f378c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Non-backed enum errors when case has int value
--FILE--
<?php

enum Foo {
    case Bar = 1;
}

?>
--EXPECTF--
Fatal error: Case Bar of non-backed enum Foo must not have a value, try adding ": int" to the enum declaration in %s on line %d