php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #60809
Patch bug60809.phpt revision 2012-01-20 02:39 UTC by pierrick@php.net
Patch 60809.diff revision 2012-01-20 02:19 UTC by pierrick@php.net

Patch bug60809.phpt for *General Issues Bug #60809

Patch version 2012-01-20 02:39 UTC

Return to Bug #60809 | Download this patch
Patch Revisions:

Developer: pierrick@php.net

--TEST--
Bug #60809 (traits - phpdoc double free)
--FILE--
<?php

class Example {
    use ExampleTrait;
}

trait ExampleTrait {
    /**
     *
     */
    public $hello_world = 'hello World ^^';
}
echo 'DONE';
--EXPECT--
DONE
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 15:01:28 2024 UTC