tagmanager: Fix handling of scopes starting with a non-ASCII character
[geany-mirror.git] / tests / ctags / non-ascii-ident1.php
blob9ceabc361c79364efc80d97b8864a1c60875b941
1 <?php
2 class × {
3 private $r = 0;
4 public function __construct($a, $b) {
5 $this->r = $a * $b;
7 public function __toString() {
8 return (string) $this->r;
12 echo new ×(2, 2);