1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00
composer/tests/Composer/Test/Autoload/Fixtures/php5.4/traits.php
2012-03-21 12:57:50 +01:00

28 lines
253 B
PHP

<?php
namespace {
trait TFoo {
}
class CFoo {
use TFoo;
}
}
namespace Foo {
trait TBar {
}
interface IBar {
}
trait TFooBar {
}
class CBar implements IBar {
use TBar, TFooBar;
}
}