reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
// RUN: rm -rf %t
// RUN: mkdir %t
// RUN: c-index-test -test-load-source all -comments-xml-schema=%S/../../bindings/xml/comment-xml-schema.rng -target x86_64-apple-darwin10 %s > %t/out
// RUN: FileCheck %s < %t/out

class Foo;
// CHECK: CXComment_Text Text=[ Foo is the best!])))]

/// Foo is the best!
class Foo;
// CHECK: CXComment_Text Text=[ Foo is the best!])))]

class Foo {};
// CHECK: CXComment_Text Text=[ Foo is the best!])))]