mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
11 lines
67 B
C++
11 lines
67 B
C++
|
|
|
|
class A
|
|
{
|
|
bool foo();
|
|
};
|
|
|
|
bool A::foo() {
|
|
return true;
|
|
}
|