blob: 44e03b1711464ff94066855daf529a69116456cb [file] [log] [blame]
// Copyright 2022 The Flutter Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
/// Multiline dartdoc comment.
///
/// ```
/// doc
/// ```
///
/// ...
var a;
/*
* Old-style dartdoc
*
* ...
*/
var b;
/* Inline block comment */
var c;
/**
* Nested block
*
* /**
* * Nested block
* */
*/
var d;
/**
* Nested
*
* /* Inline */
*/
var e;
/* Nested /* Inline */ */
var f;
// Simple comment
var g;
/// Dartdoc with reference to [a].
/// And a link to [example.org](http://example.org/).
var h;